Skip to content

Commit

Permalink
CI: Fix emscripten builds after portable SDK archive became unavailable.
Browse files Browse the repository at this point in the history
(cherry picked from commit 14b1869)
  • Loading branch information
rokups authored and ocornut committed Nov 4, 2019
1 parent 792a863 commit bcd752c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,13 +226,13 @@ jobs:

- name: Install Dependencies
run: |
wget -q https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz
tar -xvf emsdk-portable.tar.gz
emsdk-portable/emsdk update
emsdk-portable/emsdk install latest
emsdk-portable/emsdk activate latest
wget -q https://github.com/emscripten-core/emsdk/archive/master.tar.gz
tar -xvf master.tar.gz
emsdk-master/emsdk update
emsdk-master/emsdk install latest-fastcomp
emsdk-master/emsdk activate latest-fastcomp
- name: Build example_emscripten
run: |
source emsdk-portable/emsdk_env.sh
source emsdk-master/emsdk_env.sh
make -C examples/example_emscripten

0 comments on commit bcd752c

Please sign in to comment.