File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ jobs:
234
234
run : ./scripts/check_unstaged.sh
235
235
236
236
test-go :
237
- runs-on : ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'buildjet-4vcpu-ubuntu-2204' || matrix.os == 'macos-latest' && github.repository_owner == 'coder' && 'macos-latest-xl ' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'windows-latest-16-cores' || matrix.os }}
237
+ runs-on : ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'buildjet-4vcpu-ubuntu-2204' || matrix.os == 'macos-latest' && github.repository_owner == 'coder' && 'macos-latest-xlarge ' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'windows-latest-16-cores' || matrix.os }}
238
238
needs : changes
239
239
if : needs.changes.outputs.go == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
240
240
timeout-minutes : 20
@@ -271,6 +271,13 @@ jobs:
271
271
echo "cover=false" >> $GITHUB_OUTPUT
272
272
fi
273
273
274
+ # if macOS, install google-chrome for scaletests. As another concern,
275
+ # should we really have this kind of external dependency requirement
276
+ # on standard CI?
277
+ if [ "${{ matrix.os }}" == "macos-latest" ]; then
278
+ brew install google-chrome
279
+ fi
280
+
274
281
# By default Go will use the number of logical CPUs, which
275
282
# is a fine default.
276
283
PARALLEL_FLAG=""
You can’t perform that action at this time.
0 commit comments