Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: try mingw artifacts #2611

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,26 @@ jobs:
mingw-w64-ucrt-x86_64-opus
mingw-w64-ucrt-x86_64-toolchain

- name: Download mingw PR artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_NUMBER: 9312860396
run: |
# download the mingw PR artifacts
gh run download ${RUN_NUMBER} -n "UCRT64-packages" -R "msys2/MINGW-packages" --dir "UCRT64-packages"

- name: Test mingw PR artifacts
shell: msys2 {0}
run: |
ls -a 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/
id: setup-python
Expand Down
Loading