From 3e4656b9462c5c98115cd22dc6e14886c48339b0 Mon Sep 17 00:00:00 2001 From: Vlad Filippov Date: Wed, 25 Apr 2018 17:05:58 -0400 Subject: [PATCH] fix(ci): clean up travis logs (#6119) --- .travis.yml | 1 - tests/ci/deps.sh | 16 ++++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1268353640..a4419b3092 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,6 @@ before_install: install: # install everything for full dev in the fxa-content-server. - travis_retry npm install --silent - - npm ls --depth 0 | sed -e ':a' -e 'N' -e '$!ba' -e 's/\n/ /g' - grunt lint # copy over the configuration that can be used to start the server. - cp server/config/local.json-dist server/config/local.json diff --git a/tests/ci/deps.sh b/tests/ci/deps.sh index ce59b2a2fc..5d07216ab0 100755 --- a/tests/ci/deps.sh +++ b/tests/ci/deps.sh @@ -5,25 +5,25 @@ mkdir -p deps/node_modules cd deps # Auth -npm i mozilla/fxa-auth-server -cd node_modules/fxa-auth-server +git clone https://github.com/mozilla/fxa-auth-server.git --depth=1 +cd fxa-auth-server # Install devDeps for the Auth Server to get memory db -npm i +npm i &> /dev/null LOG_LEVEL=error node ./node_modules/fxa-auth-db-mysql/bin/mem.js & node ./scripts/gen_keys.js SIGNIN_UNBLOCK_ALLOWED_EMAILS="^block.*@restmail\\.net$" SIGNIN_UNBLOCK_FORCED_EMAILS="^block.*@restmail\\.net$" npm start &> /dev/null & -cd ../.. +cd .. # OAuth -npm i mozilla/fxa-oauth-server +npm i mozilla/fxa-oauth-server &> /dev/null cd node_modules/fxa-oauth-server LOG_LEVEL=error NODE_ENV=dev node ./bin/server.js & cd ../.. # Profile -npm i mozilla/fxa-profile-server +npm i mozilla/fxa-profile-server &> /dev/null cd node_modules/fxa-profile-server npm i LOG_LEVEL=error NODE_ENV=dev npm start & @@ -31,9 +31,9 @@ cd ../.. # Verifier -npm i vladikoff/browserid-verifier#http +npm i vladikoff/browserid-verifier#http &> /dev/null cd node_modules/browserid-verifier -npm i vladikoff/browserid-local-verify#http +npm i vladikoff/browserid-local-verify#http &> /dev/null PORT=5050 CONFIG_FILES=../../../tests/ci/config_verifier.json node server.js & cd ../..