Skip to content

Commit

Permalink
test: try mingw artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed May 30, 2024
1 parent f0a00ae commit 922cc5f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,25 @@ jobs:
mingw-w64-ucrt-x86_64-openssl
mingw-w64-ucrt-x86_64-opus
mingw-w64-ucrt-x86_64-toolchain
wget
- name: Test mingw PR artifacts
shell: msys2 {0}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# download the mingw PR artifacts
gh run download 9307203208 -n "UCRT64-packages" -R "msys2/MINGW-packages"
# unzip the mingw PR artifacts
unzip -q UCRT64-packages.zip -d UCRT64-packages
# install the mingw PR artifacts
cd UCRT64-packages
for pkg in $(ls -d mingw-w64-ucrt-x86_64-*); do
echo "Installing $pkg"
pacman -U --noconfirm $pkg
done
- name: Setup python
# use this instead of msys2 python due to known issues using wheels, https://www.msys2.org/docs/python/
Expand Down

0 comments on commit 922cc5f

Please sign in to comment.