diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c9400ac..9e5ddcb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,10 +17,10 @@ jobs: fail-fast: false matrix: include: - - runner-os: ubuntu-latest - triple: x86_64-unknown-linux-gnu - - runner-os: macos-latest - triple: x86_64-apple-darwin + #- runner-os: ubuntu-latest + # triple: x86_64-unknown-linux-gnu + #- runner-os: macos-latest + # triple: x86_64-apple-darwin - runner-os: windows-latest triple: x86_64-pc-windows-gnu steps: @@ -34,6 +34,12 @@ jobs: - name: Setup MinGW [windows] if: runner.os == 'Windows' uses: egor-tensin/setup-mingw@v2 + - name: Download build tools [windows] + if: runner.os == 'Windows' + run: pacman -Sy --needed \ + base-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain git \ + subversion mercurial libtool automake autoconf automake-wrapper \ + mingw-w64-i686-cmake mingw-w64-x86_64-cmake - name: Checkout repository uses: actions/checkout@v3