Skip to content

Commit f51c753

Browse files
committed
msys2 does not carry over from the build job. This is due to the break up of the single build-and-test job into multiple stages.
1 parent 222940d commit f51c753

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/aarch64-pc-windows-gnu.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ jobs:
4444
needs: build-aarch64-pc-windows-gnu
4545
steps:
4646
- uses: actions/checkout@v4
47+
- name: Setup MinGW
48+
uses: msys2/setup-msys2@v2
49+
with:
50+
msystem: CLANGARM64
51+
update: true
52+
install: mingw-w64-clang-aarch64-toolchain mingw-w64-clang-aarch64-cmake
4753
- name: Download build artifacts
4854
uses: actions/download-artifact@v4
4955
with:

.github/workflows/x86_64-pc-windows-gnu.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ jobs:
4444
needs: build-x86_64-pc-windows-gnu
4545
steps:
4646
- uses: actions/checkout@v4
47+
- name: Setup MinGW
48+
uses: msys2/setup-msys2@v2
49+
with:
50+
msystem: MINGW64
51+
update: true
52+
install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake
4753
- name: Download build artifacts
4854
uses: actions/download-artifact@v4
4955
with:

0 commit comments

Comments
 (0)