diff options
author | Saturneric <[email protected]> | 2022-02-13 05:22:02 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-13 05:22:02 +0000 |
commit | c8e3eba95cd289dfcb644bf027bdbc9bb8918ac6 (patch) | |
tree | ce48177b9174be6be908af1e886edd24fbc366be | |
parent | <fix>(ci): Independent compilation of gpgme under windows (diff) | |
download | GpgFrontend-c8e3eba95cd289dfcb644bf027bdbc9bb8918ac6.tar.gz GpgFrontend-c8e3eba95cd289dfcb644bf027bdbc9bb8918ac6.zip |
<fix>(ci): Fix path issues under Windows
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/debug.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 4ee104b1..b17c0d5c 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -97,7 +97,7 @@ jobs: - name: Build GpgME (Windows) shell: msys2 {0} run: | - cd ${{github.workspace}}/third_party/gpgme + cd $(echo "/${{github.workspace}}/third_party/gpgme" | sed 's/\\/\//g' | sed 's/://') ./autogen.sh ./configure --enable-maintainer-mode --enable-static=yes --disable-gpg-test --enable-languages=cpp LDFLAGS="-static" && make -j2 make install diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52d53dcd..55759e10 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,7 +104,7 @@ jobs: - name: Build GpgME (Windows) shell: msys2 {0} run: | - cd ${{github.workspace}}/third_party/gpgme + cd $(echo "/${{github.workspace}}/third_party/gpgme" | sed 's/\\/\//g' | sed 's/://') ./autogen.sh ./configure --enable-maintainer-mode --enable-static=yes --disable-gpg-test --enable-languages=cpp LDFLAGS="-static" && make -j2 make install |