From bd2dc69d7dcb02dc99b6c293c60b1562cb67623a Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 27 Dec 2022 22:21:08 -0500 Subject: [PATCH 1/3] common.webassembly: Bump binaryen to 2022-12-17 Also need --recursive for gtest. --- common/common.webassembly | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/common.webassembly b/common/common.webassembly index 4edd731..85f06cd 100644 --- a/common/common.webassembly +++ b/common/common.webassembly @@ -2,9 +2,9 @@ # # Common WebAssembly tools. -# main 2021-12-31 -ENV BINARYEN_GIT_TAG 6137b338c7fb37ba98b63c31225ec9cfda8cfa59 -RUN git clone https://github.com/WebAssembly/binaryen.git && \ +# main 2022-12-27 +ENV BINARYEN_GIT_TAG cec66beba45668dbad74abd2396bb80d33595ff0 +RUN git clone --recursive https://github.com/WebAssembly/binaryen.git && \ cd binaryen && \ git checkout ${BINARYEN_GIT_TAG} && \ cd ../ && \ From c9ab787bdc64fc94d95c2dc1566fe3e600cf8819 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 27 Dec 2022 22:24:45 -0500 Subject: [PATCH 2/3] common.webassembly: Bump wabt to 1.0.32, 2022-12-27 main --- common/common.webassembly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.webassembly b/common/common.webassembly index 85f06cd..b9f905f 100644 --- a/common/common.webassembly +++ b/common/common.webassembly @@ -22,8 +22,8 @@ RUN git clone --recursive https://github.com/WebAssembly/binaryen.git && \ cd ../ && \ rm -rf binaryen* -# main 2021-12-31 -ENV WABT_GIT_TAG a4366956e877c404d328358b2c00320b476763c0 +# main 2022-12-27, 1.0.32 +ENV WABT_GIT_TAG e5b042a72e6b6395e1d77901e7a413d6af87ae67 RUN git clone --recurse-submodules https://github.com/WebAssembly/wabt.git && \ cd wabt && \ git checkout ${WABT_GIT_TAG} && \ From 72300a694ffbf9580b16fbc6281a0c846947778e Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 27 Dec 2022 22:26:26 -0500 Subject: [PATCH 3/3] common.webassembly: Bump WAVM to 2022-05-14 --- common/common.webassembly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.webassembly b/common/common.webassembly index b9f905f..cdc498d 100644 --- a/common/common.webassembly +++ b/common/common.webassembly @@ -67,7 +67,7 @@ RUN mkdir -p /wasi-runtimes/wasm3/bin && \ chmod +x /wasi-runtimes/wasm3/bin/wasm3 ENV PATH "/wasi-runtimes/wasm3/bin:$PATH" -ENV WAVM_VERSION 2021-12-15 +ENV WAVM_VERSION 2022-05-14 RUN mkdir -p /wasi-runtimes/wavm/ && \ curl -LO https://github.com/WAVM/WAVM/releases/download/nightly%2F${WAVM_VERSION}/wavm-0.0.0-prerelease-linux.tar.gz && \ tar -xv -C /wasi-runtimes/wavm/ -f wavm-0.0.0-prerelease-linux.tar.gz