Skip to content

Commit

Permalink
fixup! TO-DROP: ci: test various patch levels of the MSYS2 runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
dscho committed Dec 2, 2023
1 parent 99dc140 commit 25dc66d
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,29 @@ jobs:
strategy:
fail-fast: false
matrix:
- nr: 1
run: 7072653564
- nr: 2
run: 7072653731
- nr: 3
run: 7072653988
- nr: 4
run: 7072654240
- nr: 5
run: 7072654509
- nr: 6
run: 7072654736
- nr: 7
run: 7072654943
- nr: 8
run: 7072654990
- nr: 9
run: 7072655045
- nr: 10
run: 7072655115
n:
- nr: 1
run: 7072653564
- nr: 2
run: 7072653731
- nr: 3
run: 7072653988
- nr: 4
run: 7072654240
- nr: 5
run: 7072654509
- nr: 6
run: 7072654736
- nr: 7
run: 7072654943
- nr: 8
run: 7072654990
- nr: 9
run: 7072655045
- nr: 10
run: 7072655115
concurrency:
group: windows-test-${{ matrix.nr }}-${{ github.ref }}
group: windows-test-${{ matrix.n.nr }}-${{ github.ref }}
steps:
- name: reuse `windows-artifacts`
shell: bash
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:
run: |
$headers = @{ Authorization = "token '${{ secrets.GITHUB_TOKEN }}'" }
$run_url = "https://api.github.com/repos/dscho/Cygwin-msys2-fork/actions/runs/${{ matrix.run }}/artifacts"
$run_url = "https://api.github.com/repos/dscho/Cygwin-msys2-fork/actions/runs/${{ matrix.n.run }}/artifacts"
$run = ((Invoke-WebRequest -Headers $headers $run_url).content | ConvertFrom-JSON)
$zip_url = $run.artifacts.archive_download_url
Expand All @@ -93,5 +94,5 @@ jobs:
if: failure()
uses: actions/upload-artifact@v3
with:
name: t-${{ matrix.nr }}
name: t-${{ matrix.n.nr }}
path: t

0 comments on commit 25dc66d

Please sign in to comment.