diff options
author | Saturneric <[email protected]> | 2022-01-10 16:06:15 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-10 16:08:32 +0000 |
commit | 313c4efbf417b1b59a4eaa0783637aadde8048cc (patch) | |
tree | 68eb146d17a29728657b3cc0a7086f70ec4a143c | |
parent | <feat ,fixed>(src): Optimize signal handlers and fix sequence errors during s... (diff) | |
download | GpgFrontend-313c4efbf417b1b59a4eaa0783637aadde8048cc.tar.gz GpgFrontend-313c4efbf417b1b59a4eaa0783637aadde8048cc.zip |
<feat>(ci): Add vmime build support for release-linux-package ci.
-rw-r--r-- | .github/workflows/release-linux-package.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/release-linux-package.yml b/.github/workflows/release-linux-package.yml index 43f26e9b..6919f6ce 100644 --- a/.github/workflows/release-linux-package.yml +++ b/.github/workflows/release-linux-package.yml @@ -2,7 +2,7 @@ name: Build Linux Packages on: push: - branches: [ main, develop ] + branches: [ main, develop-**, dev/** ] paths-ignore: - '**/README.md' - '**/README_CN.md' @@ -85,6 +85,17 @@ jobs: cd ${{github.workspace}} if: matrix.os == 'ubuntu-18.04' + - name: Build vmime + run: | + cd ${{github.workspace}}/third_party/vmime + mkdir build + cd build + cmake -DVMIME_HAVE_MESSAGING_PROTO_SENDMAIL=OFF -DVMIME_CHARSETCONV_LIB=iconv -DVMIME_TLS_SUPPORT_LIB=openssl -DVMIME_HAVE_SASL_SUPPORT=OFF .. + make -j2 + sudo make install + cd ${{github.workspace}} + if: matrix.os == 'ubuntu-18.04' + - name: Build GpgME run: | cd ${{github.workspace}}/third_party/gpgme |