-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create main.yml Signed-off-by: Marcus Boerger <marcus.boerger@gmail.com> * Drop LLVM for now. * * Update all external repositories. * Must disable bzlmod for now. * Must disable all warnings for google's protobuf lib. --------- Signed-off-by: Marcus Boerger <marcus.boerger@gmail.com>
- Loading branch information
Showing
3 changed files
with
59 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Test | ||
on: [push] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Bazel cache | ||
id: bazel-cache | ||
uses: actions/cache@v2 | ||
env: | ||
version: 4.2.1 | ||
with: | ||
path: | | ||
~/.cache/bazel | ||
key: ${{ runner.os }}-{{ env.version }}-bazel-cache | ||
|
||
- name: Test ASAN | ||
run: | | ||
bazel test --config=asan -c dbg //... | ||
- name: Test OPT | ||
run: | | ||
bazel test -c opt //... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters