|
34 | 34 | cargo install --locked --path . |
35 | 35 | - name: Checkout Rust-Lightning and LDK-C-Bindings git |
36 | 36 | run: | |
| 37 | + git config --global safe.directory '*' |
37 | 38 | git config --global user.email "ldk-ci@example.com" |
38 | 39 | git config --global user.name "LDK CI" |
39 | 40 | # Note this is a different endpoint, as we need one non-upstream commit! |
@@ -120,6 +121,7 @@ jobs: |
120 | 121 | fetch-depth: 0 |
121 | 122 | - name: Install cbindgen |
122 | 123 | run: | |
| 124 | + git config --global safe.directory '*' |
123 | 125 | git clone https://github.com/eqrion/cbindgen |
124 | 126 | cd cbindgen/ |
125 | 127 | git checkout v0.20.0 |
@@ -175,6 +177,7 @@ jobs: |
175 | 177 | fetch-depth: 0 |
176 | 178 | - name: Install cbindgen |
177 | 179 | run: | |
| 180 | + git config --global safe.directory '*' |
178 | 181 | git clone https://github.com/eqrion/cbindgen |
179 | 182 | cd cbindgen/ |
180 | 183 | git checkout v0.20.0 |
@@ -273,6 +276,7 @@ jobs: |
273 | 276 | fetch-depth: 0 |
274 | 277 | - name: Install android NDK compilers |
275 | 278 | run: | |
| 279 | + git config --global safe.directory '*' |
276 | 280 | curl https://dl.google.com/android/repository/android-ndk-r22b-linux-x86_64.zip > android-ndk-r22b-linux-x86_64.zip |
277 | 281 | if [ "$(sha256sum android-ndk-r22b-linux-x86_64.zip | awk '{ print $1 }')" != "ac3a0421e76f71dd330d0cd55f9d99b9ac864c4c034fc67e0d671d022d4e806b" ]; then |
278 | 282 | echo "Bad hash" |
@@ -353,6 +357,7 @@ jobs: |
353 | 357 | fetch-depth: 0 |
354 | 358 | - name: Fetch upstream LLVM/clang snapshot |
355 | 359 | run: | |
| 360 | + git config --global safe.directory '*' |
356 | 361 | wget -O clang+llvm-15.0.7-x86_64-apple-darwin21.0.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/clang+llvm-15.0.7-x86_64-apple-darwin21.0.tar.xz |
357 | 362 | if [ "$(shasum -a 256 clang+llvm-15.0.7-x86_64-apple-darwin21.0.tar.xz | awk '{ print $1 }')" != "d16b6d536364c5bec6583d12dd7e6cf841b9f508c4430d9ee886726bd9983f1c" ]; then |
358 | 363 | echo "Bad hash" |
|
0 commit comments