107 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -u -e -o pipefail
 | 
						|
 | 
						|
TRAVIS=${TRAVIS:-}
 | 
						|
CI_MODE=${CI_MODE:-}
 | 
						|
 | 
						|
# Setup environment
 | 
						|
readonly thisDir=$(cd $(dirname $0); pwd)
 | 
						|
source ${thisDir}/_travis-fold.sh
 | 
						|
 | 
						|
 | 
						|
# If the previous commands in the `script` section of .travis.yaml failed, then abort.
 | 
						|
# The variable is not set in early stages of the build, so we default to 0 there.
 | 
						|
# https://docs.travis-ci.com/user/environment-variables/
 | 
						|
if [[ ${TRAVIS_TEST_RESULT=0} == 1 ]]; then
 | 
						|
  exit 1;
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
mkdir -p ${LOGS_DIR}
 | 
						|
 | 
						|
 | 
						|
# TODO: install nvm?? it's already on travis so we don't need it
 | 
						|
#curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
 | 
						|
 | 
						|
 | 
						|
# Install node
 | 
						|
#nvm install ${NODE_VERSION}
 | 
						|
 | 
						|
 | 
						|
# Install version of npm that we are locked against
 | 
						|
travisFoldStart "install-npm"
 | 
						|
  npm install -g npm@${NPM_VERSION}
 | 
						|
travisFoldEnd "install-npm"
 | 
						|
 | 
						|
 | 
						|
# Install all npm dependencies according to shrinkwrap.json
 | 
						|
travisFoldStart "npm-install"
 | 
						|
  node tools/npm/check-node-modules --purge || npm install
 | 
						|
travisFoldEnd "npm-install"
 | 
						|
 | 
						|
 | 
						|
if [[ ${TRAVIS} && (${CI_MODE} == "e2e" || ${CI_MODE} == "e2e_2" || ${CI_MODE} == "aio" || ${CI_MODE} == "docs_test") ]]; then
 | 
						|
  # Install version of yarn that we are locked against
 | 
						|
  travisFoldStart "install-yarn"
 | 
						|
    curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "${YARN_VERSION}"
 | 
						|
  travisFoldEnd "install-yarn"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
if [[ ${TRAVIS} && (${CI_MODE} == "aio" || ${CI_MODE} == "docs_test") ]]; then
 | 
						|
  # angular.io: Install all yarn dependencies according to angular.io/yarn.lock
 | 
						|
  travisFoldStart "yarn-install.aio"
 | 
						|
    (
 | 
						|
      cd ${PROJECT_ROOT}/aio
 | 
						|
      yarn install
 | 
						|
    )
 | 
						|
  travisFoldEnd "yarn-install.aio"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
# Install Chromium
 | 
						|
if [[ ${CI_MODE} == "js" || ${CI_MODE} == "e2e" || ${CI_MODE} == "e2e_2" || ${CI_MODE} == "aio" ]]; then
 | 
						|
  travisFoldStart "install-chromium"
 | 
						|
    (
 | 
						|
      ${thisDir}/install-chromium.sh
 | 
						|
    )
 | 
						|
  travisFoldEnd "install-chromium"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
# Install Sauce Connect
 | 
						|
if [[ ${TRAVIS}] && (${CI_MODE} == "saucelabs_required" || ${CI_MODE} == "saucelabs_optional") ]]; then
 | 
						|
  travisFoldStart "install-sauceConnect"
 | 
						|
    (
 | 
						|
      ${thisDir}/../sauce/sauce_connect_setup.sh
 | 
						|
    )
 | 
						|
  travisFoldEnd "install-sauceConnect"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
# Install BrowserStack Tunnel
 | 
						|
if [[ ${TRAVIS} && (${CI_MODE} == "browserstack_required" || ${CI_MODE} == "browserstack_optional") ]]; then
 | 
						|
  travisFoldStart "install-browserstack"
 | 
						|
    (
 | 
						|
      ${thisDir}/../browserstack/start_tunnel.sh
 | 
						|
    )
 | 
						|
  travisFoldEnd "install-browserstack"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
# Install Selenium WebDriver
 | 
						|
travisFoldStart "webdriver-manager-update"
 | 
						|
  $(npm bin)/webdriver-manager update
 | 
						|
travisFoldEnd "webdriver-manager-update"
 | 
						|
 | 
						|
 | 
						|
# Install bower packages
 | 
						|
travisFoldStart "bower-install"
 | 
						|
  $(npm bin)/bower install
 | 
						|
travisFoldEnd "bower-install"
 | 
						|
 | 
						|
 | 
						|
# Print return arrows as a log separator
 | 
						|
travisFoldReturnArrows
 |