diff options
author | Saturneric <[email protected]> | 2021-06-22 08:38:00 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-22 08:38:00 +0000 |
commit | 9143c369bfad4590ccfed6adcbc37546b8354c66 (patch) | |
tree | 3e29d641d0b546758dc580dea1e0f0bdfdef9909 | |
parent | Merge remote-tracking branch 'origin/develop' into develop (diff) | |
download | GpgFrontend-9143c369bfad4590ccfed6adcbc37546b8354c66.tar.gz GpgFrontend-9143c369bfad4590ccfed6adcbc37546b8354c66.zip |
Fixed Workflow.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/debug.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index da9ab00e..d2db8799 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -73,7 +73,7 @@ jobs: - name: Build GpgME run: | cd .. - git clone https://github.com/gpg/gpgme + git clone https://github.com/saturneric/gpgme cd gpgme ./autogen.sh ./configure && make -j2 @@ -81,6 +81,16 @@ jobs: cd ${{github.workspace}} if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + - name: Build GpgME (Windows) + shell: msys2 {0} + run: | + git clone https://github.com/saturneric/gpgme + cd gpgme + ./autogen.sh + ./configure && make -j2 + sudo make install + if: matrix.os == 'windows-latest' + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |