Opt bvar with babylon counter #768
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: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: bazel build --enable_bzlmod=false --verbose_failures --define BRPC_WITH_BORINGSSL=true -- //... -//example/... |