Skip to content

Commit

Permalink
Use "fastcomp" flavor of Emscripten (#569)
Browse files Browse the repository at this point in the history
We have figured out that it's not the new version that's broken, it's
the flavor. WasmThemis does not work well with the "upstream" flavor
of Emscripten which is the default for "lastest" branch since 1.39.

Instead of pinning an older version, use a suitable flavor. We'll be
testing with "upstream" later once we figure out what's wrong with it.
  • Loading branch information
ilammy committed Dec 16, 2019
1 parent d07fc0c commit 231541d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,8 @@ jobs:
cd $HOME/emsdk
git reset --hard
git pull
# TODO (T1373): roll back to using "latest" when Emscripten regression is resolved
./emsdk install 1.38.48
./emsdk activate 1.38.48
./emsdk install latest-fastcomp
./emsdk activate latest-fastcomp
- checkout
- run:
name: Sync submodules
Expand Down Expand Up @@ -376,9 +375,8 @@ jobs:
cd $HOME/emsdk
git reset --hard
git pull
# TODO (T1373): roll back to using "latest" when Emscripten regression is resolved
./emsdk install 1.38.48
./emsdk activate 1.38.48
./emsdk install latest-fastcomp
./emsdk activate latest-fastcomp
# themis
- checkout
Expand Down

0 comments on commit 231541d

Please sign in to comment.