summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-07-04 16:21:19 -0700
committerGitHub <noreply@github.com>2018-07-04 16:21:19 -0700
commit4c16bd2ce73707e24c4b054d59564049d539a440 (patch)
tree85429029b3a1c80dd43de47b3e0f105eaada3494 /scripts
parentac306cb081c8e6a2ea0b50e51b7f673dc2cf989b (diff)
downloadbinaryen-4c16bd2ce73707e24c4b054d59564049d539a440.tar.gz
binaryen-4c16bd2ce73707e24c4b054d59564049d539a440.tar.bz2
binaryen-4c16bd2ce73707e24c4b054d59564049d539a440.zip
Stop bundling binaryen.js builds (#1609)
Instead, we point users to the bot @dcodeIO has, see #1571 This is useful because otherwise every change to binaryen.js requires bundling a build here, which is more work for contributors (and also grows the git repo over time). We still keep a bundled build of wasm.js. We use that for testing of the interpreter currently, and emscripten depends on it. Eventually wasm2asm may replace that. In any case, wasm.js builds are required far less frequently than binaryen.js.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/test/shared.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 3d0ab5228..309f3b59a 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -174,6 +174,7 @@ WASM_REDUCE = [os.path.join(options.binaryen_bin, 'wasm-reduce')]
WASM_METADCE = [os.path.join(options.binaryen_bin, 'wasm-metadce')]
WASM_EMSCRIPTEN_FINALIZE = [os.path.join(options.binaryen_bin,
'wasm-emscripten-finalize')]
+BINARYEN_JS = os.path.join(options.binaryen_bin, 'binaryen.js')
def wrap_with_valgrind(cmd):