Opt bvar with babylon counter #787
Workflow file for this run
This file contains hidden or 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
| name: Build and Test on Linux | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**.md' | |
| env: | |
| proc_num: $(nproc) | |
| # https://github.com/actions/runner-images | |
| jobs: | |
| gcc-compile-with-bazel-workspace: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: bazel test --verbose_failures --define with_babylon_counter=true --define brpc_build_for_unittest=true --test_output=streamed //test:bvar_test | |
| clang-compile-with-bazel-workspace: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: bazel test --verbose_failures --action_env=CC=clang --define with_babylon_counter=true --define brpc_build_for_unittest=true --test_output=streamed //test:bvar_test |