Make Summary 128-bit aligned within the cacheline (#111) #148
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: example | |
| on: | |
| push: | |
| branches: [main,example] | |
| jobs: | |
| basic: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| name: | |
| - anyflow | |
| - depend-use-bzlmod | |
| - depend-use-cmake-fetch | |
| - depend-use-cmake-find | |
| - depend-use-cmake-subdir | |
| - depend-use-workspace | |
| - use-anyflow-with-brpc | |
| - use-arena-with-brpc | |
| - use-async-logger | |
| - use-counter-with-bvar | |
| - use-execution-queue | |
| - use-with-bthread | |
| - use-with-glog | |
| runs-on: ubuntu-latest | |
| name: ${{matrix.name}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - if: ${{matrix.name == 'depend-use-cmake-find'}} | |
| run: | | |
| sudo apt install libabsl-dev | |
| sudo apt install libboost-all-dev | |
| sudo apt install libfmt-dev | |
| sudo apt install libprotobuf-dev | |
| - run: cd example/${{matrix.name}} && ./build.sh | |
| bcr-presubmit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: cd example/bcr-presubmit && bazel run example |