Commit bb06f08 1 parent 041c392 commit bb06f08 Copy full SHA for bb06f08
File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: [workflow_dispatch]
4
4
jobs :
5
5
build-macOS-native-libs :
6
6
name : " Create M1 and x86_64 native binaries"
7
- runs-on : macos-12
7
+ runs-on : macos-13
8
8
steps :
9
9
- name : " Checkout publishing branch"
10
10
uses : actions/checkout@v4
@@ -103,13 +103,13 @@ jobs:
103
103
./gradlew buildJvmLib
104
104
105
105
- name : " Download macOS native binaries from previous job"
106
- uses : actions/download-artifact@v3
106
+ uses : actions/download-artifact@v4
107
107
with :
108
108
name : artifact-macos
109
109
path : ./bdk-jvm/lib/src/main/resources/
110
110
111
111
- name : " Download Windows native libraries from previous job"
112
- uses : actions/download-artifact@v3
112
+ uses : actions/download-artifact@v4
113
113
with :
114
114
name : artifact-windows
115
115
path : ./bdk-jvm/lib/src/main/resources/
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ jobs:
174
174
uses : actions/checkout@v4
175
175
176
176
- name : " Download artifacts in dist/ directory"
177
- uses : actions/download-artifact@v3
177
+ uses : actions/download-artifact@v4
178
178
with :
179
179
path : dist/
180
180
Original file line number Diff line number Diff line change @@ -130,6 +130,9 @@ tasks.withType<KotlinCompile> {
130
130
}
131
131
132
132
afterEvaluate {
133
+ tasks.named(" mergeDebugJniLibFolders" ) {
134
+ mustRunAfter(tasks.named(" moveNativeAndroidLibs" ))
135
+ }
133
136
tasks.named(" mergeReleaseJniLibFolders" ) {
134
137
mustRunAfter(tasks.named(" moveNativeAndroidLibs" ))
135
138
}
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ src/bdkpython/*.so
14
14
build /
15
15
16
16
testing-setup-py-simple-example.py
17
+ .localenvironment /
You can’t perform that action at this time.
0 commit comments