Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
path: D:\a\bdk-jvm\bdk-jvm\lib\src\main\resources\

build-full-library:
name: Create full bdk-jvm library
name: "Create full bdk-jvm library"
needs: [build-macOS-native-libs, build-windows-native-lib]
runs-on: ubuntu-24.04
steps:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/test-bdk-ffi-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
permissions: {}

jobs:
build:
test:
name: "Run unit tests against the latest commit on bdk-ffi"
runs-on: ubuntu-24.04
steps:
- name: "Check out PR branch"
Expand Down Expand Up @@ -40,8 +41,10 @@ jobs:
distribution: temurin
java-version: 17

- name: "Run JVM tests"
- name: "Build library"
run: bash ./scripts/build-linux-x86_64.sh --skip-submodule-update

- name: "Run tests and build examples"
run: |
bash ./scripts/build-linux-x86_64.sh --skip-submodule-update
./gradlew test
./gradlew :examples:build
13 changes: 7 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Run All Tests
on:
pull_request:
workflow_dispatch:
on: [pull_request, workflow_dispatch]

permissions: {}

jobs:
build:
test:
name: "Build library and run unit tests"
runs-on: ubuntu-24.04
steps:
- name: "Check out PR branch"
Expand All @@ -31,8 +30,10 @@ jobs:
distribution: temurin
java-version: 17

- name: "Run JVM tests"
- name: "Build library"
run: bash ./scripts/build-linux-x86_64.sh

- name: "Run tests and build examples"
run: |
bash ./scripts/build-linux-x86_64.sh
./gradlew test
./gradlew :examples:build