Skip to content

Commit 47640dd

Browse files
committed
clone based on branches and not specific commits (not future-proof)
1 parent 82eec5c commit 47640dd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/swift.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ jobs:
1616
git config --global user.name "LDK CI"
1717
# Note this is a different endpoint, as we need one non-upstream commit!
1818
# git clone https://git.bitcoin.ninja/rust-lightning
19-
git clone https://github.com/TheBlueMatt/rust-lightning
19+
# git clone https://github.com/TheBlueMatt/rust-lightning
20+
git clone --branch 2021-03-java-bindings-base https://github.com/TheBlueMatt/rust-lightning
2021
cd rust-lightning
2122
# git checkout origin/2021-03-java-bindings-base
2223
# git checkout v0.0.100
23-
git checkout 8966f8d3d4911e034621c6d3c3d20140d3a7e76a
24+
# git checkout 8966f8d3d4911e034621c6d3c3d20140d3a7e76a
2425
echo "rust-lightning commit hash:"
2526
git rev-parse HEAD
2627
cd ..
27-
# git clone https://github.com/lightningdevkit/ldk-c-bindings
28-
git clone https://github.com/TheBlueMatt/ldk-c-bindings
28+
git clone https://github.com/lightningdevkit/ldk-c-bindings
29+
# git clone https://github.com/TheBlueMatt/ldk-c-bindings
2930
cd ldk-c-bindings
30-
git checkout 1bb5ae1b34aeb74009b7b4b5ebefc957cddc30a6
31+
# git checkout 1bb5ae1b34aeb74009b7b4b5ebefc957cddc30a6
3132
echo "ldk-c-bindings commit hash:"
3233
git rev-parse HEAD
3334
cd ..

0 commit comments

Comments
 (0)