From ed37da95467beb52a209a3f2242c4aa459c18602 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 13 Jul 2023 11:02:18 -0300 Subject: [PATCH] chore(release) disable Wasmer-based release builds Disable Wasmer-based builds temporarily until https://github.com/wasmerio/wasmer/issues/4058 gets solved. --- util/release.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/util/release.sh b/util/release.sh index edb802864..95c2d753e 100755 --- a/util/release.sh +++ b/util/release.sh @@ -383,9 +383,9 @@ release_bin() { build_with_runtime wasmtime $WASMTIME_VER $arch "libwasmtime.a" fi - if [ -n "$WASMER_VER" ]; then - build_with_runtime wasmer $WASMER_VER $arch "libwasmer.a" - fi +# if [ -n "$WASMER_VER" ]; then +# build_with_runtime wasmer $WASMER_VER $arch "libwasmer.a" +# fi if [ -n "$V8_VER" ]; then build_with_runtime v8 $V8_VER $arch "" @@ -405,9 +405,9 @@ release_all_bin_docker() { WASMTIME_VER=$(get_variable_from_makefile WASMTIME) fi - if [ -z "$WASMER_VER" ]; then - WASMER_VER=$(get_variable_from_makefile WASMER) - fi +# if [ -z "$WASMER_VER" ]; then +# WASMER_VER=$(get_variable_from_makefile WASMER) +# fi if [ -z "$V8_VER" ]; then V8_VER=$(get_variable_from_makefile V8)