aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-25 23:06:24 +0000
committerSaturneric <[email protected]>2021-06-25 23:06:24 +0000
commita6d0ac294670d975031d3d4c1c941c6dab5a356d (patch)
tree760cfea1e4f3f3402a1c190f7e648101d18d6e8d
parentMerge branch 'develop' of https://github.com/saturneric/gpgfrontend into deve... (diff)
downloadGpgFrontend-a6d0ac294670d975031d3d4c1c941c6dab5a356d.tar.gz
GpgFrontend-a6d0ac294670d975031d3d4c1c941c6dab5a356d.zip
Update release.yml
-rw-r--r--.github/workflows/release.yml26
1 files changed, 24 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 553bd6d3..e2611be9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -73,13 +73,35 @@ jobs:
pacman --noconfirm -S --needed make texinfo
if: matrix.os == 'windows-latest'
+ - name: Build gpg-error
+ run: |
+ cd ${{github.workspace}}/..
+ git clone https://github.com/saturneric/libgpg-error
+ cd libgpg-error
+ ./autogen.sh
+ ./configure --enable-maintainer-mode --enable-static=true && make -j2
+ sudo make install
+ cd ${{github.workspace}}
+ if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
+
+ - name: Build assuan
+ run: |
+ cd ${{github.workspace}}/..
+ git clone https://github.com/saturneric/libassuan
+ cd libassuan
+ ./autogen.sh
+ ./configure --enable-maintainer-mode --enable-static=true && make -j2
+ sudo make install
+ cd ${{github.workspace}}
+ if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
+
- name: Build GpgME
run: |
- cd ..
+ cd ${{github.workspace}}/..
git clone https://github.com/saturneric/gpgme
cd gpgme
./autogen.sh
- ./configure --enable-maintainer-mode --enable-languages=cpp && make -j2
+ ./configure --enable-maintainer-mode --enable-static=true --enable-languages=cpp && make -j2
sudo make install
cd ${{github.workspace}}
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'