CI: Use staging repo to check Python packages reverse dependencies.

This commit is contained in:
Mehdi Chinoune
2022-02-18 09:22:26 +01:00
parent a84e77d796
commit bbf306973e

View File

@@ -117,6 +117,14 @@ jobs:
msystem: MINGW64
install: mingw-w64-x86_64-python-pip
release: false # since we aren't building anything
- name: Add staging repo
shell: msys2 {0}
run: |
sed -i '1s|^|[staging]\nServer = https://repo.msys2.org/staging/\nSigLevel = Never\n|' /etc/pacman.conf
- name: Update using staging
run: |
msys2 -c 'pacman --noconfirm -Suuy'
msys2 -c 'pacman --noconfirm -Suu'
- name: Run Checks
if: steps.check-run.outputs.run == 'true'
shell: msys2 {0}