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: 11 - name: "Set default Rust version to 1.73.0" run: rustup default 1.73.0 - 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 --console=plain # 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