Optimize and switch to mingw64 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'build' | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 3 * * *' | ||
concurrency: nope | ||
jobs: | ||
build-installer: | ||
runs-on: windows-2022 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: setup-msys2 | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: MINGW64 | ||
update: true | ||
install: >- | ||
tar | ||
pacboy: >- | ||
qt-installer-framework:p | ||
7zip:p | ||
- name: Switch to the main mirror | ||
shell: msys2 {0} | ||
run: | | ||
echo 'Server = https://repo.msys2.org/mingw/$repo/' > /etc/pacman.d/mirrorlist.mingw | ||
echo 'Server = https://repo.msys2.org/msys/$arch/' > /etc/pacman.d/mirrorlist.msys | ||
pacman-conf.exe | ||
- name: Update using the main mirror & Check install | ||
run: | | ||
msys2 -c 'pacman --noconfirm -Suuy' | ||
msys2 -c 'pacman --noconfirm -Suu' | ||
msys2 -c 'pacman -Qkq' | ||
- name: Build Installer | ||
shell: msys2 {0} | ||
run: | | ||
printf "\n[artiq]\nSigLevel = Optional TrustAll\nServer = https://msys2.m-labs.hk/artiq-beta\n" >> /etc/pacman.conf | ||
pacman --noconfirm -Syy | ||
bash make-msys2-installer | ||
- name: Create 'latest' Variants and Checksums | ||
run: | | ||
mv msys2-base-x86_64-[0-9]*.sfx.exe msys2-base-x86_64-latest.sfx.exe | ||
mv msys2-x86_64-[0-9]*.exe msys2-x86_64-latest.exe | ||
mv msys2-*.tar.xz msys2-base-x86_64-latest.tar.xz | ||
mv msys2-*.tar.zst msys2-base-x86_64-latest.tar.zst | ||
mv msys2-*.packages.txt msys2-base-x86_64-latest.packages.txt | ||
sha256sum.exe msys2-* | ||
sha256sum.exe msys2-* > msys2-checksums.txt | ||
- name: Upload Results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: installer | ||
path: msys2-* | ||
test-installer: | ||
name: installer-${{ matrix.image }} | ||
runs-on: windows-${{ matrix.image }} | ||
needs: build-installer | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
image: [2022] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: installer | ||
- name: Install | ||
run: | | ||
./msys2-x86_64-latest.exe in --confirm-command --accept-messages --root C:/msys2-install-test | ||
- name: Test without Login Shell | ||
run: | | ||
C:\msys2-install-test\usr\bin\pacman.exe -Syy | ||
C:\msys2-install-test\usr\bin\pacman.exe --noconfirm -S vim | ||
- name: Test | ||
run: | | ||
C:\msys2-install-test\usr\bin\bash.exe -lc "pacman --version" | ||
C:\msys2-install-test\usr\bin\bash.exe -lc "pacman -Qkv" | ||
C:\msys2-install-test\usr\bin\bash.exe -lc "pacman -Syy" | ||
C:\msys2-install-test\usr\bin\bash.exe -lc "pacman --noconfirm -S git" | ||
- name: Uninstall | ||
run: | | ||
C:\msys2-install-test\uninstall.exe pr --confirm-command | ||
upload-nightly: | ||
permissions: | ||
contents: write | ||
needs: | ||
- test-docker-sfx | ||
Check failure on line 106 in .github/workflows/build.yml GitHub Actions / buildInvalid workflow file
|
||
- test-installer | ||
- test-sfx | ||
if: github.ref == 'refs/heads/main' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: installer | ||
- name: Upload Installers | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
gh release upload nightly-x86_64 msys2-* --clobber -R ${{ github.repository }} |