From 828dba6d832bd4a7e597a09abc457dbbd0b6a5c4 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 19 Aug 2021 11:45:26 +0100 Subject: [PATCH] Revert "Give up on msys2 on CI" This reverts commit f3376191a1643d910f7d74a45596190d6821c2d9. --- .github/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b67f69c41..d130ca22a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,40 @@ jobs: - name: make run: make -j $(sysctl -n hw.logicalcpu) + msys2-i686: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v2 + - uses: msys2/setup-msys2@v2 + with: + msystem: mingw32 + install: base-devel make mingw-w64-i686-toolchain mingw-w64-i686-libsndfile mingw-w64-i686-pkg-config mingw-w64-i686-python-pyqt5 + # FIXME mingw-w64-i686-fluidsynth mingw-w64-i686-liblo + - name: make features + run: make features + - name: make + run: make + + msys2-x86_64: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v2 + - uses: msys2/setup-msys2@v2 + with: + msystem: mingw64 + install: base-devel make mingw-w64-x86_64-toolchain mingw-w64-x86_64-libsndfile mingw-w64-x86_64-pkg-config mingw-w64-x86_64-python-pyqt5 + # FIXME mingw-w64-x86_64-fluidsynth mingw-w64-x86_64-liblo + - name: make features + run: make features + - name: make + run: make -j $(nproc) + ubuntu-18_04: runs-on: ubuntu-18.04 steps: