Skip to content

Commit

Permalink
Temp 21: Install openssl dependency on ubuntu CI image
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Oct 13, 2023
1 parent 1c6074a commit c994135
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
with:
distribution: temurin
java-version: 11

- name: "Install OpenSSL dependencies"
run: sudo apt-get update && sudo apt-get install -y libssl-dev

- name: "Set default Rust version to 1.67.0"
run: rustup default 1.67.0
Expand All @@ -53,6 +56,8 @@ jobs:
run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi

- name: "Build Android library"
env:
OPENSSL_DIR: /usr/include/openssl
run: |
cd bdk-android
./gradlew buildAndroidLib
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
with:
toolchain: stable

- name: "Install OpenSSL dependencies"
run: sudo apt-get update && sudo apt-get install -y libssl-dev

- name: "Generate bdk.py and binaries"
run: bash ./scripts/generate-linux.sh

Expand Down

0 comments on commit c994135

Please sign in to comment.