diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e5ddcb..d519610 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,10 +36,22 @@ jobs: 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 + uses: msys2/setup-msys@v2 + with: + update: true + install: + base-devel + git + subversion + mercurial + libtool + automake + autoconf + automake-wrapper + mingw-w64-i686-toolchain + mingw-w64-x86_64-toolchain + mingw-w64-i686-cmake + mingw-w64-x86_64-cmake - name: Checkout repository uses: actions/checkout@v3