5ca987662f
* move warning banner out of token-expire-warning and into user menu * check renewal status every 5s, and resume auto-renew if a user becomes active again * use a link in the token-expire-warning * add test for new expiration functionality * fix license test * use features helper in license test * fix import * use yarn 1.12.1 * remove mirage * skip some tests for now * use eslintignore * logout after auth tests * use new alert-banner for auth info warning * add data-test selector back * move identity back to a button, and style button.link * make the warning message the right color * fix shamir test * review feedback
49 lines
724 B
YAML
49 lines
724 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- google-chrome
|
|
packages:
|
|
- google-chrome-stable
|
|
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
go:
|
|
- "1.11.1"
|
|
|
|
go_import_path: github.com/hashicorp/vault
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
cache:
|
|
directories:
|
|
- ui/node_modules
|
|
|
|
before_install:
|
|
- nvm install 8
|
|
- nvm use 8
|
|
- 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='travis_wait 75 make testtravis'
|
|
- TEST_COMMAND='travis_wait 75 make testracetravis'
|
|
|
|
|
|
script:
|
|
- make bootstrap
|
|
- eval $TEST_COMMAND
|