Skip to content

Commit 25842c5

Browse files
authored
build: use clang-cl in coverage-windows workflow
And do not lose time trying to regenerate the project and rebuild before running the tests. PR-URL: #57919 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
1 parent 0699a99 commit 25842c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/coverage-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757
- name: Environment Information
5858
run: npx envinfo
5959
- name: Build
60-
run: ./vcbuild.bat
60+
run: ./vcbuild.bat clang-cl
6161
# TODO(bcoe): investigate tests that fail with coverage enabled
6262
# on Windows.
6363
- name: Test
64-
run: ./vcbuild.bat test-ci-js; node -e 'process.exit(0)'
64+
run: ./vcbuild.bat noprojgen nobuild test-ci-js; node -e 'process.exit(0)'
6565
env:
6666
NODE_V8_COVERAGE: ./coverage/tmp
6767
- name: Report

0 commit comments

Comments
 (0)