Skip to content

Commit

Permalink
chore(release) disable Wasmer-based release builds
Browse files Browse the repository at this point in the history
Disable Wasmer-based builds temporarily until
wasmerio/wasmer#4058
gets solved.
  • Loading branch information
hishamhm committed Jul 13, 2023
1 parent f2f6a36 commit ed37da9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions util/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand All @@ -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)
Expand Down

0 comments on commit ed37da9

Please sign in to comment.