Skip to content

Commit 4af293c

Browse files
committed
WIP: Add GnuPG dependencies to CI
1 parent 179d6d4 commit 4af293c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: .github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ jobs:
3131
profile: minimal
3232
components: clippy
3333

34+
- name: Install GnuPG on Ubuntu
35+
if: matrix.os == 'ubuntu-latest'
36+
run: sudo apt-get -qq install libgpg-error0 libgpgme11
37+
38+
- name: Install GnuPG on MacOS
39+
if: matrix.os == 'macos-latest'
40+
run: brew install gpgme
41+
3442
- name: Build Debug
3543
run: |
3644
rustc --version
@@ -58,6 +66,9 @@ jobs:
5866
profile: minimal
5967
target: x86_64-unknown-linux-musl
6068

69+
- name: Install GnuPG
70+
run: sudo apt-get -qq install libgpg-error0 libgpgme11
71+
6172
- name: Setup MUSL
6273
run: |
6374
sudo apt-get -qq install musl-tools

0 commit comments

Comments
 (0)