Files
MINGW-packages/.github/workflows/main.yml
Christoph Reiter 1462a34442 CI: use the staging repo
This should allow us to build against packages already merged
but not in the repo.
2021-02-28 15:00:20 +01:00

60 lines
1.4 KiB
YAML

name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
steps:
- uses: actions/checkout@v2
with:
path: temp
fetch-depth: 0
# to match the autobuild environment
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
install: git msys2-devel base-devel binutils mingw-w64-${{ matrix.arch }}-toolchain
update: true
- 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: Move Checkout
run: |
Copy-Item -Path ".\temp" -Destination "C:\_" -Recurse
- name: CI-Build
shell: msys2 {0}
run: |
cd /C/_
MINGW_INSTALLS=${{ matrix.msystem }} ./.ci/ci-build.sh
- name: "Upload binaries"
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.msystem }}-packages
path: C:/_/artifacts/*.pkg.tar.*