Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
859 B
30 lines
859 B
name: Bazel Tests |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
pull_request: |
|
branches: |
|
- master |
|
workflow_dispatch: |
|
|
|
jobs: |
|
|
|
ubuntu: |
|
runs-on: ${{ matrix.os }} |
|
|
|
strategy: |
|
matrix: |
|
include: |
|
- { CC: clang, os: ubuntu-20.04, flags: "" } |
|
- { CC: clang, os: ubuntu-20.04, flags: "-c opt" } # Some warnings only fire with -c opt |
|
- { CC: gcc, os: ubuntu-20.04, flags: "-c opt" } |
|
- { CC: clang, os: ubuntu-20.04, flags: "--//:fasttable_enabled=true -- -cmake:test_generated_files" } |
|
- { CC: clang, os: ubuntu-20.04, flags: "--config=asan -- -benchmarks:benchmark" } |
|
- { CC: clang, os: macos-11, flags: "" } |
|
|
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: Run tests |
|
run: cd ${{ github.workspace }} && CC=${{ matrix.CC }} bazel test ... ${{ matrix.flags }}
|
|
|