Skip to content

Commit 999ee2c

Browse files
authored
GHA: add a bazel build CI job
Ensure that we keep the bazel builds usable with our changes. Add a simple CI check for the bazel based builds.
1 parent 92c0916 commit 999ee2c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ jobs:
7575
path: |
7676
${{ github.workspace }}/BinaryCache/ds2/Release/ds2.exe
7777
78+
bazel:
79+
runs-on: ubuntu-latest
80+
name: Bazel Build Check
81+
steps:
82+
- uses: actions/checkout@v4
83+
with:
84+
path: ${{ github.workspace }}/SourceCache/ds2
85+
- run: |
86+
sudo apt-get update
87+
sudo apt-get install -qq --no-install-recommends bison flex ninja-build
88+
- run: |
89+
bazel build //...
7890
7991
mingw:
8092
needs: [windows_tools]

0 commit comments

Comments
 (0)