File tree Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 7
7
permissions : {}
8
8
9
9
jobs :
10
- jvm-tests :
11
- name : " Build and test JVM library on Linux"
12
- runs-on : ubuntu-24.04
13
- steps :
14
- - name : " Checkout publishing branch"
15
- uses : actions/checkout@v4
16
- with :
17
- persist-credentials : false
18
-
19
- - name : " Cache"
20
- uses : actions/cache@v3
21
- with :
22
- path : |
23
- ~/.cargo/registry
24
- ~/.cargo/git
25
- ./target
26
- key : ${{ runner.os }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
27
-
28
- - name : " Set up JDK"
29
- uses : actions/setup-java@v4
30
- with :
31
- distribution : temurin
32
- java-version : 11
33
-
34
- - name : " Set default Rust version to 1.84.1"
35
- run : rustup default 1.84.1
36
-
37
- - name : " Build library and run tests"
38
- run : |
39
- cd bdk-jvm
40
- bash ./scripts/build-linux-x86_64.sh
41
- ./gradlew test
42
-
43
10
swift-tests :
44
11
name : " Build and test iOS library on macOS"
45
12
runs-on : macos-14
You can’t perform that action at this time.
0 commit comments