diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-05-30 14:39:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 14:39:04 +0200 |
commit | 240032ade752c68854c2fb8223a913ca0e87f586 (patch) | |
tree | a1625beb677ca0db7af181fb79da59e8be493d89 | |
parent | 0f1da724924fc494bfd316c57757e0e1d7b90143 (diff) | |
parent | 43371c9fbe3afda15a1d69be380fcee54cdf6bd8 (diff) |
Merge pull request #39168 from madmiraal/fix-javascript-ci
Activate emscripten with no-embedded option.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9987fcbe56..58c3733d22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -128,7 +128,7 @@ install: - if [ "$PLATFORM" = "javascript" ]; then git clone --depth 1 "https://github.com/emscripten-core/emsdk.git"; ./emsdk/emsdk install latest; - ./emsdk/emsdk activate latest; + ./emsdk/emsdk activate --no-embedded latest; fi - if [ "$STATIC_CHECKS" = "yes" ]; then unset SCONS_CACHE; |