open-vault/.travis.yml

49 lines
723 B
YAML
Raw Normal View History

2016-06-30 16:13:07 +00:00
sudo: required
2017-01-17 18:48:36 +00:00
dist: trusty
2015-04-28 21:05:16 +00:00
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
2015-04-28 19:51:47 +00:00
language: go
2016-06-30 16:13:07 +00:00
services:
- docker
2015-04-28 19:51:47 +00:00
go:
2018-06-09 22:18:32 +00:00
- "1.10.3"
2015-04-28 19:51:47 +00:00
go_import_path: github.com/hashicorp/vault
2015-04-29 02:24:43 +00:00
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.9.4
- export PATH="$HOME/.yarn/bin:$PATH"
2015-04-28 19:51:47 +00:00
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'
2015-04-28 19:51:47 +00:00
script:
2017-02-07 21:04:27 +00:00
- make bootstrap
- eval $TEST_COMMAND