diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/debug.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index d2db8799..a580be09 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -60,7 +60,7 @@ jobs: - name: Set up MinGW (Windows) uses: msys2/setup-msys2@v2 with: - install: git msys2-devel base-devel binutils pactoys-git mercurial cvs wget p7zip perl ruby mingw-w64-x86_64-toolchain + install: git msys2-devel base-devel binutils mingw-w64-x86_64-toolchain release: false if: matrix.os == 'windows-latest' @@ -68,6 +68,8 @@ jobs: shell: msys2 {0} run: | pacman --noconfirm -S --needed mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-cmake autoconf automake mingw-w64-x86_64-qt-creator mingw-w64-x86_64-gpgme + pacman --noconfirm -S --needed make texinfo + if: matrix.os == 'windows-latest' - name: Build GpgME @@ -88,7 +90,7 @@ jobs: cd gpgme ./autogen.sh ./configure && make -j2 - sudo make install + make install if: matrix.os == 'windows-latest' - name: Configure CMake |