1 name: Continuous Integration Checks
3 on: [push, pull_request]
8 # Ubuntu's version of clang doesn't support....anything that should work.
9 # Ubuntu is an utter trash OS and should generally never be used for anything.
10 # We also require at least rustc 1.51 (ie https://github.com/rust-lang/rust/pull/79998),
11 # so we use debian testing
12 container: debian:bookworm
16 - name: Install build utilities and test that clang can build for wasm
19 apt-get -y dist-upgrade
20 apt-get -y install cargo libstd-rust-dev-wasm32 lld git g++ clang curl node-typescript npm python3 wasi-libc
21 echo "int main() {}" > genbindings_wasm_test_file.c
22 clang -nostdlib -o /dev/null --target=wasm32-wasi -Wl,--no-entry genbindings_wasm_test_file.c
23 rm genbindings_wasm_test_file.c
24 - name: Checkout source code
25 uses: actions/checkout@v2
28 - name: Install cbindgen
30 git clone https://github.com/eqrion/cbindgen
33 cargo update -p indexmap --precise "1.6.2" --verbose
34 cargo install --locked --path .
35 - name: Checkout Rust-Lightning and LDK-C-Bindings git
37 git config --global safe.directory '*'
38 git config --global user.email "ldk-ci@example.com"
39 git config --global user.name "LDK CI"
40 # Note this is a different endpoint, as we need one non-upstream commit!
41 git clone https://github.com/lightningdevkit/rust-lightning
43 git checkout origin/0.0.121-bindings
45 git clone https://github.com/lightningdevkit/ldk-c-bindings
48 cd lightning-c-bindings
49 cargo update -p memchr --precise "2.5.0" --verbose
50 - name: Rebuild C bindings without STD
53 git config --global safe.directory "*"
54 ./genbindings.sh ../rust-lightning false
55 - name: Build and Test TS Debug Bindings for Node
57 # We need FinalizationRegistry and top-level await support, which requires node 14.6/8,
58 # however Debian ships with Node 12
59 # Thus, we install the binary nodejs from nodejs.org and test with that.
60 curl https://nodejs.org/dist/v16.13.1/node-v16.13.1-linux-x64.tar.xz > nodejs.tar.xz
61 tar xvvf nodejs.tar.xz
62 export PATH=$(pwd)/$(echo node-*/bin):$PATH
63 ./genbindings.sh ./ldk-c-bindings/ wasm true false
64 - name: Build and Test TS Release Bindings for Node
66 export PATH=$(pwd)/$(echo node-*/bin):$PATH
67 ./genbindings.sh ./ldk-c-bindings/ wasm false false
68 - name: Install Playwright for Web Tests
70 export HOME=/root/ # Github actions is apparently broken
71 export PATH=$(pwd)/$(echo node-*/bin):$PATH
72 # npx playwright install-deps is broken so we do it manually, see https://github.com/microsoft/playwright/issues/11165
73 apt-get install -y --no-install-recommends fonts-liberation libenchant-2-2 libicu72 libjpeg62-turbo libasound2 libatk-bridge2.0-0 libatk1.0-0 libatspi2.0-0 libcairo2 libcups2 libdbus-1-3 libdrm2 libegl1 libgbm1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxrandr2 libxshmfence1 xvfb fonts-noto-color-emoji fonts-unifont libfontconfig libfreetype6 xfonts-scalable fonts-ipafont-gothic fonts-wqy-zenhei fonts-tlwg-loma-otf ffmpeg libcairo-gobject2 libdbus-glib-1-2 libfontconfig1 libgdk-pixbuf2.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libxcb-shm0 libxcursor1 libxi6 libxrender1 libxt6 gstreamer1.0-libav gstreamer1.0-plugins-bad gstreamer1.0-plugins-base gstreamer1.0-plugins-good libepoxy0 libevdev2 libgl1 libgles2 libgstreamer-gl1.0-0 libgstreamer1.0-0 libharfbuzz-icu0 libharfbuzz0b libhyphen0 libnotify4 libopenjp2-7 libopus0 libpng16-16 libsecret-1-0 libsoup2.4-1 libwayland-client0 libwayland-egl1 libwayland-server0 libwebp7 libwebpdemux2 libwoff1 libxkbcommon0 libxml2 libxslt1.1
74 mkdir -p $HOME/.cache/ms-playwright # `playwright install` is too dumb to create this for us
76 npm i -D playwright@1.37.0-alpha-jul-31-2023
77 npx playwright@1.37.0-alpha-jul-31-2023 install
78 - name: Build and Test TS Debug Bindings for Web
80 export HOME=/root/ # Github actions is apparently broken
81 export PATH=$(pwd)/$(echo node-*/bin):$PATH
82 git config --global safe.directory "*"
83 ./genbindings.sh ./ldk-c-bindings/ wasm true true
85 rm liblightningjs.wasm && ln -s $(pwd)/../liblightningjs_debug.wasm ./liblightningjs.wasm
86 python3 -m http.server &
90 - name: Build and Test TS Release Bindings for Web
92 export HOME=/root/ # Github actions is apparently broken
93 export PATH=$(pwd)/$(echo node-*/bin):$PATH
94 ./genbindings.sh ./ldk-c-bindings/ wasm false true
96 rm liblightningjs.wasm && ln -s $(pwd)/../liblightningjs_release.wasm ./liblightningjs.wasm
97 python3 -m http.server &
101 - name: Check latest TS files are in git
103 git checkout ts/package.json
104 git checkout node-net/package.json
108 runs-on: ubuntu-latest
109 # Ubuntu's version of clang doesn't support....anything that should work.
110 # Ubuntu is an utter trash OS and should generally never be used for anything.
111 # We also require at least rustc 1.51 (ie https://github.com/rust-lang/rust/pull/79998),
112 # so we use debian testing
113 container: debian:bookworm
117 - name: Install required dependencies
120 apt-get -y dist-upgrade
121 apt-get -y install cargo lld llvm git g++ clang curl python3 mono-devel
122 - name: Checkout source code
123 uses: actions/checkout@v2
126 - name: Install cbindgen
128 git clone https://github.com/eqrion/cbindgen
131 cargo update -p indexmap --precise "1.6.2" --verbose
132 cargo install --locked --path .
133 - name: Checkout Rust-Lightning and LDK-C-Bindings git
135 git config --global safe.directory '*'
136 git config --global user.email "ldk-ci@example.com"
137 git config --global user.name "LDK CI"
138 # Note this is a different endpoint, as we need one non-upstream commit!
139 git clone https://github.com/lightningdevkit/rust-lightning
141 git checkout origin/0.0.121-bindings
143 git clone https://github.com/lightningdevkit/ldk-c-bindings
146 cd lightning-c-bindings
147 cargo update -p memchr --precise "2.5.0" --verbose
148 - name: Rebuild C bindings with STD
151 git config --global safe.directory "*"
152 ./genbindings.sh ../rust-lightning true
153 - name: Build and Test C# Debug Bindings
155 ./genbindings.sh ./ldk-c-bindings/ c_sharp true true
156 mono-csc -out:test.exe -langversion:3 -unsafe c_sharp/src/org/ldk/enums/*.cs c_sharp/src/org/ldk/impl/*.cs c_sharp/src/org/ldk/util/*.cs c_sharp/src/org/ldk/structs/*.cs c_sharp/test/src/tests.cs
157 ln -s libldkcsharp_debug_Linux-amd64.so libldkcsharp.so
158 export ASAN_OPTIONS=detect_leaks=0
159 LD_PRELOAD=/usr/lib/llvm-14/lib/clang/14.0.6/lib/linux/libclang_rt.asan-x86_64.so mono test.exe
162 runs-on: ubuntu-latest
163 # Ubuntu's version of clang doesn't support....anything that should work.
164 # Ubuntu is an utter trash OS and should generally never be used for anything.
165 # We also require dotnet so we use fedora
170 - name: Install required dependencies
172 dnf install -y mingw64-gcc git cargo dotnet clang llvm lld faketime rust-std-static-x86_64-pc-windows-gnu which diffutils
173 - name: Checkout source code
174 uses: actions/checkout@v2
177 - name: Install cbindgen
179 cargo install cbindgen
180 - name: Checkout Rust-Lightning and LDK-C-Bindings git
182 git config --global safe.directory '*'
183 git config --global user.email "ldk-ci@example.com"
184 git config --global user.name "LDK CI"
185 # Note this is a different endpoint, as we need one non-upstream commit!
186 git clone https://github.com/lightningdevkit/rust-lightning
188 git checkout origin/0.0.121-bindings
190 git clone https://github.com/lightningdevkit/ldk-c-bindings
193 - name: Rebuild C bindings with STD
196 export LDK_C_BINDINGS_EXTRA_TARGETS=x86_64-pc-windows-gnu
197 export LDK_C_BINDINGS_EXTRA_TARGET_CCS=`pwd`/deterministic-build-wrappers/clang-x86_64-windows
198 ./genbindings.sh ../rust-lightning true
199 - name: Remove checked-in source to ensure its correctly checked-in
200 run: rm c_sharp/src/org/ldk/enums/*.cs c_sharp/src/org/ldk/impl/*.cs c_sharp/src/org/ldk/structs/*.cs
201 - name: Build Windows C# Bindings
203 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
204 LDK_TARGET=x86_64-pc-windows-gnu ./genbindings.sh ./ldk-c-bindings/ c_sharp false false
205 - name: Build Linux C# Bindings
207 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
208 ./genbindings.sh ./ldk-c-bindings/ c_sharp false false
209 - name: Build Release NUPKG
212 ./build-release-nupkg.sh
213 - uses: actions/upload-artifact@v3
216 path: c_sharp/org.ldk.nupkg
217 - name: Check latest auto-generated code is in git
219 # Checkout files that get updated with version information
220 git checkout c_sharp/packaging_artifacts/package/services/metadata/core-properties/ldk.psmdcp
221 git checkout c_sharp/packaging_artifacts/org.ldk.nuspec
223 - name: Checkout latest binaries
226 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
227 echo "Fetching deterministic binaries for LDK-GC ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
228 # Gitweb only allows snapshots of folders by providing the object hash, which we have to extract:
229 SNAPSHOT_LINK="$(curl "https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE};hb=refs/heads/main" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
230 curl -o bins-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
231 mkdir -p ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
232 cd ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
233 tar xvvf ../../bins-snapshot.tgz
234 mv ldk-java-bins-*/* ./
235 rm -r ldk-java-bins-*
236 - name: Compare C# nupkg with built one
239 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
240 if ! diff ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"org.ldk.nupkg c_sharp/org.ldk.nupkg; then
241 dnf -y install diffoscope
242 diffoscope ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"org.ldk.nupkg c_sharp/org.ldk.nupkg || echo
247 runs-on: ubuntu-latest
248 # Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
249 # This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
250 container: debian:bookworm
254 - name: Install native Rust toolchain, Valgrind, and build utilitis
257 apt-get -y dist-upgrade
258 apt-get -y install cargo valgrind lld git g++ clang openjdk-17-jdk maven faketime zip unzip llvm curl
259 - name: Checkout source code
260 uses: actions/checkout@v2
263 - name: Install cbindgen
265 git config --global safe.directory '*'
266 git clone https://github.com/eqrion/cbindgen
269 cargo update -p indexmap --precise "1.6.2" --verbose
270 cargo install --locked --path .
271 - name: Checkout Rust-Lightning and LDK-C-Bindings git
273 git config --global user.email "ldk-ci@example.com"
274 git config --global user.name "LDK CI"
275 # Note this is a different endpoint, as we need one non-upstream commit!
276 git clone https://github.com/lightningdevkit/rust-lightning
278 git checkout origin/0.0.121-bindings
280 git clone https://github.com/lightningdevkit/ldk-c-bindings
283 cd lightning-c-bindings
284 cargo update -p memchr --precise "2.5.0" --verbose
285 - name: Pin proc-macro and quote to meet MSRV
287 cd ldk-c-bindings/c-bindings-gen
288 cargo update -p quote --precise "1.0.30" --verbose
289 cargo update -p proc-macro2 --precise "1.0.65" --verbose
290 - name: Rebuild C bindings, and check the sample app builds + links
293 ./genbindings.sh ../rust-lightning true
294 - name: Build Java Debug Bindings
295 run: ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" true false
296 - name: Run Java Tests against Debug Bindings
298 mv liblightningjni_debug_Linux-amd64.so liblightningjni.so
299 export ASAN_OPTIONS=detect_leaks=0
300 LD_PRELOAD=/usr/lib/llvm-14/lib/clang/14.0.6/lib/linux/libclang_rt.asan-x86_64.so LD_LIBRARY_PATH=. mvn test
301 - name: Build Java Release Bindings
303 ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" false false
304 - name: Check latest headers are in git
310 runs-on: ubuntu-latest
311 # Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
312 # This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
313 container: debian:bookworm
317 - name: Install native Rust toolchain, Valgrind, and build utilitis
320 apt-get -y dist-upgrade
321 apt-get -y install cargo valgrind lld git g++ clang openjdk-17-jdk maven faketime zip unzip llvm curl
322 - name: Checkout source code
323 uses: actions/checkout@v2
326 - name: Install cbindgen
328 git config --global safe.directory '*'
329 git clone https://github.com/eqrion/cbindgen
332 cargo update -p indexmap --precise "1.6.2" --verbose
333 cargo install --locked --path .
334 - name: Checkout Rust-Lightning and LDK-C-Bindings git
336 git config --global user.email "ldk-ci@example.com"
337 git config --global user.name "LDK CI"
338 # Note this is a different endpoint, as we need one non-upstream commit!
339 git clone https://github.com/lightningdevkit/rust-lightning
341 git checkout origin/0.0.121-bindings
343 git clone https://github.com/lightningdevkit/ldk-c-bindings
346 cd lightning-c-bindings
347 cargo update -p memchr --precise "2.5.0" --verbose
348 - name: Pin proc-macro and quote to meet MSRV
350 cd ldk-c-bindings/c-bindings-gen
351 cargo update -p quote --precise "1.0.30" --verbose
352 cargo update -p proc-macro2 --precise "1.0.65" --verbose
353 - name: Rebuild C bindings, and check the sample app builds + links
356 ./genbindings.sh ../rust-lightning true
357 - name: Checkout latest MacOS binaries
360 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
361 echo "Fetching deterministic binaries for LDK-GC ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
362 # Gitweb only allows snapshots of folders by providing the object hash, which we have to extract:
363 SNAPSHOT_LINK="$(curl "https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE};hb=refs/heads/main" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
364 curl -o bins-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
365 mkdir -p ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
366 cd ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
367 tar xvvf ../../bins-snapshot.tgz
368 mv ldk-java-bins-*/* ./
369 rm -r ldk-java-bins-*
371 mkdir -p src/main/resources/
372 - name: Copy latest MacOS leaktracking libs
374 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
375 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"liblightningjni_MacOSX-aarch64-leaktracking.nativelib src/main/resources/liblightningjni_MacOSX-aarch64.nativelib
376 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"liblightningjni_MacOSX-x86_64-leaktracking.nativelib src/main/resources/liblightningjni_MacOSX-x86_64.nativelib
377 - name: Build Leaktracking Java Release Bindings
379 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
380 ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" leaks false
381 - name: Build deterministic release jar
383 ./build-release-jar.sh
384 mv ldk-java.jar ldk-java-leaktracking.jar
385 - name: Copy latest MacOS libs
388 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
389 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/liblightningjni_MacOSX-"{aarch64,x86_64}.nativelib src/main/resources/
390 - name: Build Java leaktracking Bindings
392 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
393 ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" leaks false
394 mkdir ldk-java-bins/new/
395 cp src/main/resources/liblightningjni_Linux-amd64.nativelib ldk-java-bins/new/liblightningjni_Linux-amd64-leaktracking.nativelib
396 - name: Build Java Release Bindings
398 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
399 ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" false false
400 - name: Build deterministic release jar
401 run: ./build-release-jar.sh
402 - uses: actions/upload-artifact@v3
406 - uses: actions/upload-artifact@v3
408 name: ldk-java-leaktracking.jar
409 path: ldk-java-leaktracking.jar
410 - name: Check latest library and jars are in bins repo
412 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
413 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"liblightningjni_Mac*.nativelib ldk-java-bins/new/
414 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"LDK-release.aar ldk-java-bins/new/
415 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"org.ldk.nupkg ldk-java-bins/new/
416 cp src/main/resources/liblightningjni_Linux-amd64.nativelib ldk-java-bins/new/
417 cp ldk-java-sources.jar ldk-java-bins/new/
418 cp ldk-java.jar ldk-java-bins/new/
419 cp ldk-java-leaktracking.jar ldk-java-bins/new/
420 cp ldk-java-classes.jar ldk-java-bins/new/
422 rm "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/liblightningjs.wasm" # TODO: Test this
423 if ! diff -r "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/" new/; then
424 apt-get -y install diffoscope
425 diffoscope new/ldk-java-sources.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-sources.jar" || echo
426 diffoscope new/ldk-java-classes.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-classes.jar" || echo
427 diffoscope new/ldk-java.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java.jar" || echo
428 diffoscope new/ldk-java-leaktracking.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-leaktracking.jar" || echo
431 - name: Run Java Tests against built release jar
433 mvn install:install-file -Dfile=ldk-java.jar -DgroupId=org.lightningdevkit -DartifactId=ldk-java -Dversion=1.0-SNAPSHOT -Dpackaging=jar
436 java -ea -jar target/ldk-java-tests-1.0-SNAPSHOT-jar-with-dependencies.jar
439 runs-on: ubuntu-latest
440 # Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
441 # This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
442 container: debian:bookworm
446 - name: Install native Rust toolchain, Valgrind, and build utilitis
449 apt-get -y dist-upgrade
450 apt-get -y install cargo valgrind openjdk-17-jdk lld git g++ clang llvm curl rust-src
451 - name: Checkout source code
452 uses: actions/checkout@v2
455 - name: Install cbindgen
457 git config --global safe.directory '*'
458 git clone https://github.com/eqrion/cbindgen
461 cargo update -p indexmap --precise "1.6.2" --verbose
462 cargo install --locked --path .
463 - name: Checkout Rust-Lightning and LDK-C-Bindings git
465 git config --global user.email "ldk-ci@example.com"
466 git config --global user.name "LDK CI"
467 # Note this is a different endpoint, as we need one non-upstream commit!
468 git clone https://github.com/lightningdevkit/rust-lightning
470 git checkout origin/0.0.121-bindings
472 git clone https://github.com/lightningdevkit/ldk-c-bindings
475 - name: Fetch MacOS SDK
477 curl -o Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers.tar.gz https://bitcoincore.org/depends-sources/sdks/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers.tar.gz
478 tar xvvf Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers.tar.gz
479 - name: Rebuild C bindings, and check the sample app builds + links
481 # rust-src doesn't distribute the rustlib Cargo.lock, but an empty
482 # file seems to suffice to make `-Zbuild-std` happy.
483 touch /usr/lib/rustlib/src/rust/Cargo.lock
484 export MACOS_SDK="$PWD/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers"
486 ./genbindings.sh ../rust-lightning true
487 - name: Fetch MacOS OpenJDK 18 for x86_64
489 curl -o openjdk-18.0.1.1_macos-x64_bin.tar.gz https://download.java.net/java/GA/jdk18.0.1.1/65ae32619e2f40f3a9af3af1851d6e19/2/GPL/openjdk-18.0.1.1_macos-x64_bin.tar.gz
490 if [ "$(shasum -a 256 openjdk-18.0.1.1_macos-x64_bin.tar.gz | awk '{ print $1 }')" != "f02d17ec5a387555f8489abc352d973b6c10364409b597046025938e2266d72a" ]; then
496 tar xvvf ../openjdk-18.0.1.1_macos-x64_bin.tar.gz
497 - name: Fetch MacOS OpenJDK 18 for aarch64
499 curl -o openjdk-18.0.1.1_macos-aarch64_bin.tar.gz https://download.java.net/java/GA/jdk18.0.1.1/65ae32619e2f40f3a9af3af1851d6e19/2/GPL/openjdk-18.0.1.1_macos-aarch64_bin.tar.gz
500 if [ "$(shasum -a 256 openjdk-18.0.1.1_macos-aarch64_bin.tar.gz | awk '{ print $1 }')" != "29773ad68063bdad7fbaeb762cd873d3f243e86de380d3ac5335cdb929371fb5" ]; then
506 tar xvvf ../openjdk-18.0.1.1_macos-aarch64_bin.tar.gz
507 - name: Build MacOS aarch64 Java leaktracking Release Bindings
509 MACOS_SDK="$PWD/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers"
510 JAVA_HOME=jdk-aarch64/jdk-18.0.1.1.jdk/Contents/Home
511 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
512 CC=clang LDK_TARGET=aarch64-apple-darwin LDK_TARGET_CPU=apple-a14 ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$MACOS_SDK" leaks false
513 mv src/main/resources/liblightningjni_MacOSX-aarch64.nativelib src/main/resources/liblightningjni_MacOSX-aarch64-leaktracking.nativelib
514 - name: Build MacOS x86_64 Java leaktracking Release Bindings
516 MACOS_SDK="$PWD/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers"
517 JAVA_HOME=jdk-x86_64/jdk-18.0.1.1.jdk/Contents/Home
518 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
519 CC=clang LDK_TARGET=x86_64-apple-darwin LDK_TARGET_CPU=sandybridge ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$MACOS_SDK" leaks false
520 mv src/main/resources/liblightningjni_MacOSX-x86_64.nativelib src/main/resources/liblightningjni_MacOSX-x86_64-leaktracking.nativelib
521 - name: Build MacOS aarch64 Java Release Bindings
523 MACOS_SDK="$PWD/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers"
524 JAVA_HOME=jdk-aarch64/jdk-18.0.1.1.jdk/Contents/Home
525 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
526 CC=clang LDK_TARGET=aarch64-apple-darwin LDK_TARGET_CPU=apple-a14 ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$MACOS_SDK" false false
527 - name: Build MacOS x86_64 Java Release Bindings
529 MACOS_SDK="$PWD/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers"
530 JAVA_HOME=jdk-x86_64/jdk-18.0.1.1.jdk/Contents/Home
531 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
532 CC=clang LDK_TARGET=x86_64-apple-darwin LDK_TARGET_CPU=sandybridge ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$MACOS_SDK" false false
533 - name: Checkout latest binaries
535 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
536 echo "Fetching deterministic binaries for LDK-GC ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
537 # Gitweb only allows snapshots of folders by providing the object hash, which we have to extract:
538 SNAPSHOT_LINK="$(curl "https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE};hb=refs/heads/main" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
539 curl -o bins-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
540 mkdir -p ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
541 cd ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
542 tar xvvf ../../bins-snapshot.tgz
543 mv ldk-java-bins-*/* ./
544 rm -r ldk-java-bins-*
546 - name: Check latest MacOS libraries are in the bins repo
549 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
550 for F in liblightningjni_MacOSX-{x86_64,aarch64}{,-leaktracking}.nativelib; do
551 if ! diff "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/$F" "src/main/resources/$F"; then
552 apt-get -y install diffoscope
553 # Sadly these binaries are still non-deterministic, but only due
554 # to a few-byte tag, thus we use diffoscope to ensure there
555 # aren't any "real" differences and move on.
556 diffoscope "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/$F" "src/main/resources/$F" || echo
561 runs-on: ubuntu-latest
562 # Frankly, I'm not really sure why debian and ubuntu differ in the results here, they really shouldn't
563 container: debian:bullseye
567 - name: Install rust targets
570 apt-get -y dist-upgrade
571 apt-get -y install git g++ clang faketime zip unzip curl openjdk-17-jdk
572 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
576 # Temporarily use 1.67.1 to fix https://github.com/rust-lang/rust/issues/108943
577 rustup install 1.67.1
578 rustup default 1.67.1
579 rustup target add armv7-linux-androideabi
580 rustup target add aarch64-linux-android
581 rustup target add i686-linux-android
582 rustup target add x86_64-linux-android
583 - name: Checkout source code
584 uses: actions/checkout@v2
587 - name: Install android NDK compilers
589 git config --global safe.directory '*'
590 curl https://dl.google.com/android/repository/android-ndk-r22b-linux-x86_64.zip > android-ndk-r22b-linux-x86_64.zip
591 if [ "$(sha256sum android-ndk-r22b-linux-x86_64.zip | awk '{ print $1 }')" != "ac3a0421e76f71dd330d0cd55f9d99b9ac864c4c034fc67e0d671d022d4e806b" ]; then
595 unzip android-ndk-r22b-linux-x86_64.zip
596 - name: Install cbindgen
599 cargo install cbindgen
600 - name: Checkout Rust-Lightning and LDK-C-Bindings git
602 git config --global user.email "ldk-ci@example.com"
603 git config --global user.name "LDK CI"
604 # Note this is a different endpoint, as we need one non-upstream commit!
605 git clone https://github.com/lightningdevkit/rust-lightning
607 git checkout origin/0.0.121-bindings
609 git clone https://github.com/lightningdevkit/ldk-c-bindings
612 cd lightning-c-bindings
614 cargo update -p memchr --precise "2.5.0" --verbose
615 - name: Checkout Android AAR binaries and artifacts
617 # Gitweb only allows snapshots of folders by providing the object hash, which we have to extract:
618 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
619 echo "Fetching deterministic binaries for LDK-GC ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
620 RELEASE_PAGE="https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE};hb=refs/heads/main"
621 SNAPSHOT_LINK="$(curl "$RELEASE_PAGE" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
622 curl -o bins-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
624 ANDROID_PAGE="https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=android-artifacts;hb=refs/heads/main"
625 SNAPSHOT_LINK="$(curl "$ANDROID_PAGE" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
626 curl -o android-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
628 mkdir -p ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
629 cd ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
630 tar xvvf ../../bins-snapshot.tgz
631 mv ldk-java-bins-*/* ./
632 rm -r ldk-java-bins-*
634 mkdir -p ../android-artifacts
635 cd ../android-artifacts
636 tar xvvf ../../android-snapshot.tgz
637 mv ldk-java-bins-*/* ./
638 rm -r ldk-java-bins-*
639 - name: Build Android aar
642 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
643 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-classes.jar" ./
644 export ANDROID_TOOLCHAIN="$(pwd)/android-ndk-r22b/toolchains/llvm/prebuilt/linux-x86_64"
645 export PATH="$PATH:$ANDROID_TOOLCHAIN/bin"
646 ./android-build.sh ./rust-lightning ./ldk-c-bindings/ ./ldk-java-bins/android-artifacts
647 - uses: actions/upload-artifact@v3
649 name: LDK-release.aar
650 path: LDK-release.aar
651 - name: Check latest library and jars are in bins repo
653 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
654 if ! diff LDK-release.aar "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"LDK-release.aar; then
655 apt-get -y install diffoscope
656 diffoscope LDK-release.aar "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/LDK-release.aar"
668 runs-on: ${{ matrix.platform }}
670 - name: Install Rust components
672 rustup target install aarch64-apple-darwin
673 rustup component add rust-src
674 - name: Checkout source code
675 uses: actions/checkout@v2
678 - name: Install cbindgen
679 run: cargo install cbindgen
680 - name: Checkout Rust-Lightning and LDK-C-Bindings git
682 git config --global user.email "ldk-ci@example.com"
683 git config --global user.name "LDK CI"
684 # Note this is a different endpoint, as we need one non-upstream commit!
685 git clone https://github.com/rghtningdevkit/ust-lightning
687 git checkout origin/0.0.121-bindings
689 git clone https://github.com/lightningdevkit/ldk-c-bindings
692 cd lightning-c-bindings
693 cargo update -p memchr --precise "2.5.0" --verbose
694 - name: Rebuild C bindings and check the sample app builds + links
697 CC=clang ./genbindings.sh ../rust-lightning true
698 - name: Fetch OpenJDK 18
700 if [ "$(uname -m)" = "arm64" ]; then
701 wget -O openjdk-18.0.1.1_macos-aarch64_bin.tar.gz https://download.java.net/java/GA/jdk18.0.1.1/65ae32619e2f40f3a9af3af1851d6e19/2/GPL/openjdk-18.0.1.1_macos-aarch64_bin.tar.gz
702 if [ "$(shasum -a 256 openjdk-18.0.1.1_macos-aarch64_bin.tar.gz | awk '{ print $1 }')" != "29773ad68063bdad7fbaeb762cd873d3f243e86de380d3ac5335cdb929371fb5" ]; then
706 tar xvvf openjdk-18.0.1.1_macos-aarch64_bin.tar.gz
708 wget -O openjdk-18.0.1.1_macos-x64_bin.tar.gz https://download.java.net/java/GA/jdk18.0.1.1/65ae32619e2f40f3a9af3af1851d6e19/2/GPL/openjdk-18.0.1.1_macos-x64_bin.tar.gz
709 if [ "$(shasum -a 256 openjdk-18.0.1.1_macos-x64_bin.tar.gz | awk '{ print $1 }')" != "f02d17ec5a387555f8489abc352d973b6c10364409b597046025938e2266d72a" ]; then
713 tar xvvf openjdk-18.0.1.1_macos-x64_bin.tar.gz
715 - name: Checkout latest Linux binaries
717 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
718 echo "Fetching deterministic binaries for LDK-GC ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
719 # Gitweb only allows snapshots of folders by providing the object hash, which we have to extract:
720 SNAPSHOT_LINK="$(wget -O /dev/stdout "https://git.bitcoin.ninja/index.cgi?p=ldk-java-bins;a=tree;f=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE};hb=refs/heads/main" | grep snapshot | grep -o 'href="[a-zA-Z0-9/?\.=;\-]*"' | sed 's/href="//' | tr -d '"' | grep snapshot)"
721 wget -O bins-snapshot.tgz "https://git.bitcoin.ninja${SNAPSHOT_LINK}"
722 mkdir -p ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
723 cd ldk-java-bins/"${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}"
724 tar xvvf ../../bins-snapshot.tgz
725 mv ldk-java-bins-*/* ./
727 mkdir -p src/main/resources/
728 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/liblightningjni_Linux-"* src/main/resources/
729 - name: Build Java Release Bindings
731 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
732 export JAVA_HOME=`pwd`/jdk-18.0.1.1.jdk/Contents/Home
733 export PATH=$JAVA_HOME/bin:$PATH
734 ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$(xcrun --show-sdk-path)" false false
736 if [ "${{ matrix.platform }}" = "macos-11" ]; then
737 export CC="clang --target=aarch64-apple-darwin"
738 export LDK_TARGET=aarch64-apple-darwin
739 export LDK_TARGET_CPU=apple-a14
740 ./genbindings.sh ./ldk-c-bindings/ "-I$JAVA_HOME/include/ -I$JAVA_HOME/include/darwin -isysroot$(xcrun --show-sdk-path)" false false
741 cat src/main/resources/liblightningjni_MacOSX-aarch64.nativelib > /dev/null
744 - name: Fetch Maven 3.8.4
746 # We don't bother using the upstream mirrors as they remove prior
747 # releases aggressively, causing spurious CI failures when we don't
748 # care about the version used.
749 wget -O apache-maven-3.8.4-bin.tar.gz https://bitcoin.ninja/apache-maven-3.8.4-bin.tar.gz
750 if [ "$(shasum -a 256 apache-maven-3.8.4-bin.tar.gz | awk '{ print $1 }')" != "2cdc9c519427bb20fdc25bef5a9063b790e4abd930e7b14b4e9f4863d6f9f13c" ]; then
754 tar xvvf apache-maven-3.8.4-bin.tar.gz
755 export PATH=apache-maven-3.8.4/bin:$PATH
756 - name: Run Java Tests against built jar
758 export JAVA_HOME=`pwd`/jdk-18.0.1.1.jdk/Contents/Home
759 export PATH=$JAVA_HOME/bin:$PATH
760 mvn -DskipTests=true package
761 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
762 JAR_VERSION=${LDK_GARBAGECOLLECTED_GIT_OVERRIDE:1:100}
763 mvn install:install-file -Dfile=target/ldk-java-${JAR_VERSION}.jar -DgroupId=org.lightningdevkit -DartifactId=ldk-java -Dversion=1.0-SNAPSHOT -Dpackaging=jar
766 java -ea -jar target/ldk-java-tests-1.0-SNAPSHOT-jar-with-dependencies.jar
767 - name: Run Java Tests against release bins
769 export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
770 export JAVA_HOME=`pwd`/jdk-18.0.1.1.jdk/Contents/Home
771 export PATH=$JAVA_HOME/bin:$PATH
772 cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java.jar" ./
773 mvn install:install-file -Dfile=ldk-java.jar -DgroupId=org.lightningdevkit -DartifactId=ldk-java -Dversion=1.0-SNAPSHOT -Dpackaging=jar
777 java -ea -jar target/ldk-java-tests-1.0-SNAPSHOT-jar-with-dependencies.jar