Skip to content

Commit e8ec18a

Browse files
committed
nomerge
1 parent b52d3a3 commit e8ec18a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,14 @@ jobs:
115115
- name: Build
116116
run: |
117117
cd "${{ github.workspace }}"
118-
bazel build :all
118+
export USE_BAZEL_VERSION=9.0.2rc1
119+
bazelisk build :all
119120
120121
- name: Test
121122
run: |
122123
cd "${{ github.workspace }}"
123-
bazel test test
124+
export USE_BAZEL_VERSION=9.0.2rc1
125+
bazelisk test test
124126
125127
bzlmod-build:
126128
strategy:
@@ -134,10 +136,12 @@ jobs:
134136
shell: bash
135137
run: |
136138
cd "${{ github.workspace }}"
137-
bazel build --enable_bzlmod :all
139+
export USE_BAZEL_VERSION=9.0.2rc1
140+
bazelisk build --enable_bzlmod :all
138141
139142
- name: Test
140143
shell: bash
141144
run: |
142145
cd "${{ github.workspace }}"
143-
bazel test --enable_bzlmod test
146+
export USE_BAZEL_VERSION=9.0.2rc1
147+
bazelisk test --enable_bzlmod test

0 commit comments

Comments
 (0)