Add bazel ci (#8497)

This commit is contained in:
Derek Bailey
2025-01-22 13:41:45 -08:00
committed by GitHub
parent 4b69b27d43
commit 69ac6a712d
3 changed files with 22 additions and 1 deletions

View File

@@ -575,6 +575,21 @@ jobs:
working-directory: tests/nim
run: python3 testnim.py
bazel:
name: Bazel
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: bazel build
run: >
bazel build
//:flatc
//:flatbuffers
- name: bazel test
run: >
bazel test
//tests:flatbuffers_test
release-digests:
if: startsWith(github.ref, 'refs/tags/')
needs: [build-linux, build-windows, build-mac-intel, build-mac-universal]