Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit 19b59c0

Browse files
committed
Remove wasmer permanently.
According to our logs, nobody has ever used it. Signed-off-by: David Calavera <david.calavera@gmail.com>
1 parent 92f69f9 commit 19b59c0

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

Dockerfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,6 @@ ENV GIMME_GO_VERSION "1.14.4"
444444
ENV GIMME_ENV_PREFIX "/opt/buildhome/.gimme/env"
445445
RUN gimme | bash
446446

447-
################################################################################
448-
#
449-
# Wasmer
450-
#
451-
################################################################################
452-
#RUN curl https://get.wasmer.io -sSfL | sh
453-
454447
################################################################################
455448
#
456449
# Dotnet Core

run-build-functions.sh

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ mkdir -p $NETLIFY_CACHE_DIR/node_modules
4040
mkdir -p $NETLIFY_CACHE_DIR/.bundle
4141
mkdir -p $NETLIFY_CACHE_DIR/bower_components
4242
mkdir -p $NETLIFY_CACHE_DIR/.venv
43-
mkdir -p $NETLIFY_CACHE_DIR/wapm_packages
4443
mkdir -p $NETLIFY_CACHE_DIR/.build
4544
mkdir -p $NETLIFY_CACHE_DIR/.netlify/plugins
4645

@@ -54,7 +53,6 @@ mkdir -p $NETLIFY_CACHE_DIR/.boot
5453
mkdir -p $NETLIFY_CACHE_DIR/.composer
5554
mkdir -p $NETLIFY_CACHE_DIR/.gimme_cache/gopath
5655
mkdir -p $NETLIFY_CACHE_DIR/.gimme_cache/gocache
57-
mkdir -p $NETLIFY_CACHE_DIR/.wasmer/cache
5856
mkdir -p $NETLIFY_CACHE_DIR/.homebrew-cache
5957

6058
: ${YARN_FLAGS=""}
@@ -638,22 +636,6 @@ install_dependencies() {
638636
fi
639637
fi
640638

641-
# WAPM version
642-
source $HOME/.wasmer/wasmer.sh
643-
if [ -f wapm.toml ] || [ -f wapm.lock ]
644-
then
645-
restore_home_cache ".wasmer/cache" "wasmer cache"
646-
restore_cwd_cache "wapm_packages" "wapm packages"
647-
wapm install
648-
if [ $? -eq 0 ]
649-
then
650-
echo "Wapm packages installed"
651-
else
652-
echo "Error during Wapm install"
653-
exit 1
654-
fi
655-
fi
656-
657639
# Setup project GOPATH
658640
if [ -n "$GO_IMPORT_PATH" ]
659641
then
@@ -672,7 +654,6 @@ cache_artifacts() {
672654
cache_cwd_directory "bower_components" "bower components"
673655
cache_cwd_directory "node_modules" "node modules"
674656
cache_cwd_directory ".venv" "python virtualenv"
675-
cache_cwd_directory "wapm_packages" "wapm packages"
676657
cache_cwd_directory ".build" "swift build"
677658
cache_cwd_directory ".netlify/plugins" "build plugins"
678659

@@ -683,7 +664,6 @@ cache_artifacts() {
683664
cache_home_directory ".m2" "maven dependencies"
684665
cache_home_directory ".boot" "boot dependencies"
685666
cache_home_directory ".composer" "composer dependencies"
686-
cache_home_directory ".wasmer/cache", "wasmer cache"
687667
cache_home_directory ".homebrew-cache", "homebrew cache"
688668

689669
# Don't follow the Go import path or we'll store

0 commit comments

Comments
 (0)