Skip to content

Commit

Permalink
Add library build task to Android test CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Apr 24, 2023
1 parent b820d6a commit e81dd71
Show file tree
Hide file tree
Showing 2 changed files with 7 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 @@ -52,6 +52,11 @@ jobs:
- name: "Install Rust Android targets"
run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi

- name: "Build Android library"
run: |
cd bdk-android
./gradlew buildAndroidLib
# There are currently no unit tests for bdk-android and the integration tests require the macOS image
# which is not working with the older NDK version we are using, so for now we just make sure that the library builds.
# - name: "Run Android unit tests"
Expand Down
2 changes: 2 additions & 0 deletions bdk-python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ tox -vv
```shell
pip install ./dist/bdkpython-<yourversion>-py3-none-any.whl
```

Extra line for CI test

0 comments on commit e81dd71

Please sign in to comment.