Skip to content

Commit 5ee426d

Browse files
committed
fixup! tools: avoid building twice in coverage jobs
1 parent 2ead25d commit 5ee426d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install gcovr
7373
run: pip install gcovr==7.2
7474
- name: Configure
75-
run: ./configure -v --error-on-warn --coverage --without-intl
75+
run: ./configure --verbose --error-on-warn --coverage --without-intl
7676
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
7777
# The cause is most likely coverage's use of the inspector.
7878
- name: Build and test

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install gcovr
7373
run: pip install gcovr==7.2
7474
- name: Configure
75-
run: ./configure -v --error-on-warn --coverage
75+
run: ./configure --verbose --error-on-warn --coverage
7676
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
7777
# The cause is most likely coverage's use of the inspector.
7878
- name: Build and test

0 commit comments

Comments
 (0)