Add compact block filter client via Kyoto #1315
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Android | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-android/**" | |
pull_request: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-android/**" | |
# The default Android NDK on the ubuntu-22.04 image is 25.2.9519653 | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Show default version of NDK" | |
run: echo $ANDROID_NDK_ROOT | |
- name: "Check out PR branch" | |
uses: actions/checkout@v3 | |
- name: "Cache" | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
./target | |
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} | |
- name: "Set up JDK" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: "Build Android library" | |
run: | | |
cd bdk-android | |
bash ./scripts/build-linux-x86_64.sh | |
# There are currently no unit tests for bdk-android (see the tests in bdk-jvm instead) 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 and omit the connectedTest | |
# - name: "Run Android connected tests" | |
# run: | | |
# cd bdk-android | |
# ./gradlew connectedAndroidTest --console=plain |