Skip to content

Commit

Permalink
.github/workflows/ci.yml: fix build failures.
Browse files Browse the repository at this point in the history
- pin SWIG version;
- appease git in Emscripten docker image;
  • Loading branch information
dot-asm committed Jul 3, 2024
1 parent f06caa8 commit 17388c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ jobs:
node_js=bindings/node.js
if [ -x $node_js/run.me ]; then
if [ ! -x ~/swig/bin/swig ]; then
( git clone https://github.com/swig/swig;
( git clone --branch v4.2.1 https://github.com/swig/swig;
cd swig;
./autogen.sh;
./configure --prefix=$HOME/swig;
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
registry: https://index.docker.io/v1/
image: emscripten/emsdk
options: --volume ${{ github.workspace }}:/blst --network=none
run: git clone -q /blst /tmp/blst && /tmp/blst/bindings/emscripten/run.me -O2
run: git config --global safe.directory \* && git clone -q /blst /tmp/blst && /tmp/blst/bindings/emscripten/run.me -O2

- name: C#
run: |
Expand Down

0 comments on commit 17388c0

Please sign in to comment.