Debuggin win64 action. #10
Workflow file for this run
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: check-msys2 | |
on: | |
push: | |
branches: [ "win" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
msys2-build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: mingw64 | |
update: true | |
install: dos2unix xz mingw-w64-x86_64-gcc pkgconf mingw-w64-x86_64-gettext mingw-w64-x86_64-meson gettext-devel | |
- uses: robinraju/release-downloader@v1.7 | |
with: | |
repository: "PerryWerneck/libudjat" | |
latest: true | |
fileName: "mingw-w64-x86_64-libudjat-1.2-0-x86_64.pkg.tar.zst" | |
- uses: robinraju/release-downloader@v1.7 | |
with: | |
repository: "PerryWerneck/wmi" | |
latest: true | |
fileName: "mingw-w64-x86_64-wmi++-1.0-1-x86_64.pkg.tar.zst" | |
- name: CI-Build | |
run: | | |
pacman -U --noconfirm *.pkg.tar.zst | |
dos2unix PKGBUILD.mingw | |
makepkg BUILDDIR=/tmp/pkg -p PKGBUILD.mingw |