Skip to content

Commit f745520

Browse files
committed
Fix the add-matcher bits (sorry, Jan!)
1 parent ff57b6c commit f745520

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
make runtest SCRIPT=../.github/workflows/info.tcl || echo 'get info failed'
8686
- name: Run Tests
8787
run: |
88-
echo "::add-matcher::tcltest.json"
88+
echo "::add-matcher::.github/tcltest.json"
8989
make test
9090
echo "::remove-matcher::tcltest"
9191
env:

.github/workflows/mac-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
timeout-minutes: 15
5959
- name: Run Tests
6060
run: |
61-
echo "::add-matcher::tcltest.json"
61+
echo "::add-matcher::.github/tcltest.json"
6262
make -j4 test styles=develop
6363
env:
6464
ERROR_ON_FAILURES: 1
@@ -101,7 +101,7 @@ jobs:
101101
make runtest SCRIPT=../.github/workflows/info.tcl || echo 'get info failed'
102102
- name: Run Tests
103103
run: |
104-
echo "::add-matcher::tcltest.json"
104+
echo "::add-matcher::.github/tcltest.json"
105105
make test
106106
env:
107107
ERROR_ON_FAILURES: 1

.github/workflows/win-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
timeout-minutes: 5
8989
- name: Run Tests ${{ matrix.config }}
9090
run: |
91-
Write-Output "::add-matcher::tcltest.json"
91+
Write-Output "::add-matcher::.github/tcltest.json"
9292
&nmake -f makefile.vc ${{ matrix.config }} test
9393
if ($lastexitcode -ne 0) {
9494
throw "nmake exit code: $lastexitcode"
@@ -138,7 +138,7 @@ jobs:
138138
make runtest SCRIPT=../.github/workflows/info.tcl || echo 'get info failed'
139139
- name: Run Tests
140140
run: |
141-
echo "::add-matcher::tcltest.json"
141+
echo "::add-matcher::.github/tcltest.json"
142142
make test
143143
timeout-minutes: 30
144144
env:

0 commit comments

Comments
 (0)