Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(ci): clean up travis logs (#6119)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Apr 25, 2018
1 parent f5831d4 commit 3e4656b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions tests/ci/deps.sh
Expand Up @@ -5,35 +5,35 @@ 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 &
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 ../..

Expand Down

0 comments on commit 3e4656b

Please sign in to comment.