Opt bvar with babylon counter #777
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 build --enable_bzlmod=false --verbose_failures --define with_thrift=true -- //... -//example/... | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/... | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --define with_mesalink=false --define with_glog=true --define with_thrift=true --define with_debug_bthread_sche_safety=true --define with_debug_lock=true --define with_asan=true --define with_babylon_counter=true -- //... -//example/... | |
| clang-compile-with-bazel-workspace: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --action_env=CC=clang --define with_thrift=true -- //... -//example/... | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --action_env=CC=clang --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/... | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --action_env=CC=clang --define with_mesalink=false --define with_glog=true --define with_thrift=true --define with_debug_bthread_sche_safety=true --define with_debug_lock=true --define with_asan=true --define with_babylon_counter=true -- //... -//example/... | |