1name: MSYS2 clang32 build 2on: [push, pull_request] 3 4jobs: 5 build: 6 runs-on: windows-latest 7 defaults: 8 run: 9 shell: msys2 {0} 10 steps: 11 - uses: actions/checkout@v3 12 - uses: msys2/setup-msys2@v2 13 with: 14 msystem: clang32 15 update: true 16 install: git mingw-w64-clang-i686-cc mingw-w64-clang-i686-autotools 17 - name: CI-Build 18 run: | 19 echo 'Running in MSYS2!' 20 ./bootstrap.sh 21 # Disabling tests as there is some issue that prevents libtool from 22 # finalizing its executable wrappers. 23 # Perhaps this one https://github.com/msys2/MSYS2-packages/issues/1351 24 # but it only occurs on clang32 configuration. 25 ./.private/ci-build.sh --build-dir build-msys2-clang32 --no-test 26