From d18f057ef348b500a9d5671550b9fe89bc704eb1 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 30 May 2024 18:51:38 -0400 Subject: [PATCH] test: try mingw artifacts --- .github/workflows/CI.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 977eba517ff..adc828482b9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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