File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,16 @@ jobs:
99
99
cd ci/LDKSwift
100
100
env
101
101
# remove target output
102
- rm -rf ${{ github.workspace }}/ci/ldk-c-bindings/lightning-c-bindings/target
102
+ # rm -rf ${{ github.workspace }}/ci/ldk-c-bindings/lightning-c-bindings/target
103
+
104
+ # debug the target
105
+ find "${{ github.workspace }}/ci/ldk-c-bindings/lightning-c-bindings/target"
106
+
107
+ # build the actual swift binary
103
108
../../swift-5.7.2-RELEASE-ubuntu22.04/usr/bin/swift build
104
109
env :
105
110
LDK_C_BINDINGS_BASE : ${{ github.workspace }}/ci/ldk-c-bindings
111
+ LDK_C_BINDINGS_BINARY_DIRECTORY : ${{ github.workspace }}/ci/ldk-c-bindings/lightning-c-bindings/target/release
106
112
RUST_BACKTRACE : 1
107
113
- name : Test Swift bindings package without address sanitizer
108
114
run : |
@@ -111,6 +117,7 @@ jobs:
111
117
../../swift-5.7.2-RELEASE-ubuntu22.04/usr/bin/swift test -v
112
118
env :
113
119
LDK_C_BINDINGS_BASE : ${{ github.workspace }}/ci/ldk-c-bindings
120
+ LDK_C_BINDINGS_BINARY_DIRECTORY : ${{ github.workspace }}/ci/ldk-c-bindings/lightning-c-bindings/target/release
114
121
RUST_BACKTRACE : 1
115
122
- name : Build Swift bindings package with address sanitizer
116
123
run : |
You can’t perform that action at this time.
0 commit comments