Skip to content

Commit 5a3b545

Browse files
committed
TO-DROP: ci: only run windows-build
To figure out how to make t0610.47 work _in the CI builds_, I'll have to debug on the agents. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 59fc512 commit 5a3b545

File tree

1 file changed

+17
-23
lines changed

1 file changed

+17
-23
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,24 @@ concurrency:
1919
group: ${{ github.sha }}
2020

2121
jobs:
22-
regular:
23-
name: ${{matrix.vector.jobname}} (${{matrix.vector.pool}})
24-
strategy:
25-
matrix:
26-
vector:
27-
- jobname: linux-reftable
28-
cc: clang
29-
pool: ubuntu-latest
30-
env:
31-
CC: ${{matrix.vector.cc}}
32-
CC_PACKAGE: ${{matrix.vector.cc_package}}
33-
jobname: ${{matrix.vector.jobname}}
34-
distro: ${{matrix.vector.pool}}
35-
runs-on: ${{matrix.vector.pool}}
22+
windows-build:
23+
name: win build
24+
runs-on: windows-latest
25+
concurrency:
26+
group: windows-build-${{ github.ref }}
3627
steps:
3728
- uses: actions/checkout@v4
38-
- run: ci/install-dependencies.sh
39-
- run: ci/run-build-and-tests.sh
40-
- name: print test failures
41-
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
42-
run: ci/print-test-failures.sh
43-
- name: Upload failed tests' directories
44-
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
29+
- uses: git-for-windows/setup-git-for-windows-sdk@v1
30+
- name: build
31+
shell: bash
32+
env:
33+
HOME: ${{runner.workspace}}
34+
NO_PERL: 1
35+
run: . /etc/profile && ci/make-test-artifacts.sh artifacts
36+
- name: zip up tracked files
37+
run: git archive -o artifacts/tracked.tar.gz HEAD
38+
- name: upload tracked files and build artifacts
4539
uses: actions/upload-artifact@v4
4640
with:
47-
name: failed-tests-${{matrix.vector.jobname}}
48-
path: ${{env.FAILED_TEST_ARTIFACTS}}
41+
name: windows-artifacts
42+
path: artifacts

0 commit comments

Comments
 (0)