Skip to content

Commit 3f63809

Browse files
committed
TO-DROP: restrict test to t0060
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 0f97a49 commit 3f63809

File tree

1 file changed

+6
-35
lines changed

1 file changed

+6
-35
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ jobs:
5555
-DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} -DVCPKG_ARCH=${{ matrix.arch }}-windows -DHOST_CPU=${{ matrix.arch }}
5656
- name: MSBuild
5757
run: msbuild git.sln -property:Configuration=Release -property:Platform=${{ matrix.arch }} -maxCpuCount:4 -property:PlatformToolset=v142
58+
- name: test
59+
shell: bash
60+
if: matrix.arch == 'x64'
61+
env:
62+
NO_SVN_TESTS: 1
63+
run: . /etc/profile && cd t && sh t0060-*.sh -iVx
5864
- name: bundle artifact tar
5965
shell: bash
6066
env:
@@ -70,38 +76,3 @@ jobs:
7076
with:
7177
name: vs-artifacts-${{ matrix.arch }}
7278
path: artifacts
73-
vs-test:
74-
name: win+VS test
75-
runs-on: windows-latest
76-
needs: [vs-build]
77-
strategy:
78-
fail-fast: false
79-
matrix:
80-
nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
81-
concurrency:
82-
group: vs-test-${{ matrix.nr }}-${{ github.ref }}
83-
steps:
84-
- uses: git-for-windows/setup-git-for-windows-sdk@v1
85-
- name: download tracked files and build artifacts
86-
uses: actions/download-artifact@v6
87-
with:
88-
name: vs-artifacts-x64
89-
path: ${{github.workspace}}
90-
- name: extract tracked files and build artifacts
91-
shell: bash
92-
run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
93-
- name: test
94-
shell: bash
95-
env:
96-
NO_SVN_TESTS: 1
97-
run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
98-
- name: print test failures
99-
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
100-
shell: bash
101-
run: ci/print-test-failures.sh
102-
- name: Upload failed tests' directories
103-
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
104-
uses: actions/upload-artifact@v5
105-
with:
106-
name: failed-tests-windows-vs-${{ matrix.nr }}
107-
path: ${{env.FAILED_TEST_ARTIFACTS}}

0 commit comments

Comments
 (0)