From 5bfdad9374730189bd0c2dcde1c3986b662bf1dc Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 29 May 2020 10:50:50 -0700 Subject: [PATCH] Fix emscripten CI after recent emsdk change See https://github.com/emscripten-core/emsdk/pull/472 Turns out we were actually depending on the non-embedded config! --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 41ed302e485e5..56eb73603d4ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -41,7 +41,7 @@ commands: cd ~/emsdk-master ./emsdk update-tags ./emsdk install tot-upstream - ./emsdk activate tot-upstream + ./emsdk activate --no-embedded tot-upstream # Remove the emsdk version of emscripten to save space in the # persistent workspace and to avoid any confusion with the version # we are trying to test. @@ -315,7 +315,7 @@ jobs: cd ~/emsdk-master ./emsdk update-tags ./emsdk install tot-fastcomp - ./emsdk activate tot-fastcomp + ./emsdk activate --no-embedded tot-fastcomp # Remove the emsdk version of emscripten to save space in the # persistent workspace and to avoid any confusion with the version # we are trying to test.