Skip to content

Commit 17388c0

Browse files
committed
.github/workflows/ci.yml: fix build failures.
- pin SWIG version; - appease git in Emscripten docker image;
1 parent f06caa8 commit 17388c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
node_js=bindings/node.js
219219
if [ -x $node_js/run.me ]; then
220220
if [ ! -x ~/swig/bin/swig ]; then
221-
( git clone https://github.com/swig/swig;
221+
( git clone --branch v4.2.1 https://github.com/swig/swig;
222222
cd swig;
223223
./autogen.sh;
224224
./configure --prefix=$HOME/swig;
@@ -264,7 +264,7 @@ jobs:
264264
registry: https://index.docker.io/v1/
265265
image: emscripten/emsdk
266266
options: --volume ${{ github.workspace }}:/blst --network=none
267-
run: git clone -q /blst /tmp/blst && /tmp/blst/bindings/emscripten/run.me -O2
267+
run: git config --global safe.directory \* && git clone -q /blst /tmp/blst && /tmp/blst/bindings/emscripten/run.me -O2
268268

269269
- name: C#
270270
run: |

0 commit comments

Comments
 (0)