open-vault/.travis.yml
Noelle Daley c7e5283b8b
Add Browserstack for IE11 testing (#6557)
* add browserstack

* check for data before removing root token

* fix root prefix and select by attributes for ie11

* use objectAt for ie11

* use blobs instead of files for ie11

* manually round cirucmference for ie11

* skip csp test on ie11

* skip tests in ie11

* include polyfill for CI

* remove on exit hooks

* update which browserstack tests are run

* remove ie check since we are not running these tests in ie

* remove ie check since we are not running these tests in ie
2019-05-03 15:20:14 -07:00

50 lines
784 B
YAML

sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: go
services:
- docker
go:
- "1.12"
go_import_path: github.com/hashicorp/vault
matrix:
allow_failures:
- go: tip
cache:
directories:
- ui/node_modules
before_install:
- nvm install 10
- nvm use 10
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.1
- export PATH="$HOME/.yarn/bin:$PATH"
branches:
only:
- master
- travis-testing
env:
- TEST_COMMAND='make dev test-ember'
- TEST_COMMAND='make dev ember-ci-test'
- TEST_COMMAND='travis_wait 75 make testtravis'
- TEST_COMMAND='travis_wait 75 make testracetravis'
- GO111MODULE=on
script:
- make bootstrap
- eval $TEST_COMMAND