diff options
author | Alon Zakai <azakai@google.com> | 2022-09-22 14:06:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 14:06:27 -0700 |
commit | 27d0c232bb1d6e4f2cb22fbe8511829730457dbd (patch) | |
tree | fef8c1598f51d2a3e7f993887ea98e307ae064ad | |
parent | 917abbae115e0b463a46c0f37abc17aec93d5445 (diff) | |
download | binaryen-27d0c232bb1d6e4f2cb22fbe8511829730457dbd.tar.gz binaryen-27d0c232bb1d6e4f2cb22fbe8511829730457dbd.tar.bz2 binaryen-27d0c232bb1d6e4f2cb22fbe8511829730457dbd.zip |
Revert "Pin the emsdk for now (#5077)" (#5078)
This reverts commit 6cc44fd11ba550ea7149fbc868a9b70aa58822a6.
#5075 fixes the require() issue, so we don't need the pin.
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2b88336b..d6db01137 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -270,10 +270,8 @@ jobs: mkdir $HOME/emsdk git clone --depth 1 https://github.com/emscripten-core/emsdk.git $HOME/emsdk $HOME/emsdk/emsdk update-tags - # pinned due to https://github.com/emscripten-core/emscripten/pull/17851 - # TODO: go back to tot - $HOME/emsdk/emsdk install latest - $HOME/emsdk/emsdk activate latest + $HOME/emsdk/emsdk install tot + $HOME/emsdk/emsdk activate tot - name: update path run: echo "PATH=$PATH:$HOME/emsdk" >> $GITHUB_ENV - name: emcc-tests |