From d4a390028a8c9b5c7e01ca07498f9126f1ed7ce6 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 25 Dec 2019 18:57:35 -0800 Subject: [PATCH] node 6.x is EOL'ed upgrade to latest stable (#8702) --- buildscripts/gateway-tests.sh | 5 +---- mint/preinstall.sh | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/buildscripts/gateway-tests.sh b/buildscripts/gateway-tests.sh index 0bc92166f..4bf132457 100755 --- a/buildscripts/gateway-tests.sh +++ b/buildscripts/gateway-tests.sh @@ -46,10 +46,7 @@ function main() gw_pid="$(start_minio_gateway_s3)" SERVER_ENDPOINT=127.0.0.1:24240 ENABLE_HTTPS=0 ACCESS_KEY=minio \ - SECRET_KEY=minio123 MINT_MODE="full" /mint/entrypoint.sh \ - aws-sdk-go aws-sdk-java aws-sdk-php aws-sdk-ruby awscli \ - healthcheck mc minio-dotnet minio-go minio-java minio-py \ - s3cmd security + SECRET_KEY=minio123 MINT_MODE="full" /mint/entrypoint.sh rv=$? kill "$sr_pid" diff --git a/mint/preinstall.sh b/mint/preinstall.sh index 672132e2b..ee7ce368b 100755 --- a/mint/preinstall.sh +++ b/mint/preinstall.sh @@ -19,7 +19,7 @@ export APT="apt --quiet --yes" export WGET="wget --quiet --no-check-certificate" # install nodejs source list -if ! $WGET --output-document=- https://deb.nodesource.com/setup_6.x | bash -; then +if ! $WGET --output-document=- https://deb.nodesource.com/setup_13.x | bash -; then echo "unable to set nodejs repository" exit 1 fi @@ -32,7 +32,7 @@ rm -f packages-microsoft-prod.deb $APT update # download and install golang -GO_VERSION="1.13" +GO_VERSION="1.13.5" GO_INSTALL_PATH="/usr/local" download_url="https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" if ! $WGET --output-document=- "$download_url" | tar -C "${GO_INSTALL_PATH}" -zxf -; then