diff options
-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 |