-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (35 loc) · 847 Bytes
/
.travis.yml
File metadata and controls
43 lines (35 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: node_js
os: linux
# dist: trusty
addons:
chrome: stable
node_js:
- '8'
notifications:
email:
recipients:
- sebastien.jourdain@kitware.com
- aron.helser@kitware.com
on_success: change
on_failure: always
cache:
directories:
- node_modules
- Documentation/build-tmp
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgif-dev
script:
- npm run build:release
- npm run validate
- npm run bundle
- npm run guide
- git config --global user.name "Travis CI"
- git config --global user.email "aron.helser@kitware.com"
- export GIT_PUBLISH_URL=https://${GH_TOKEN}@github.com/CASL/VeraInView.git
- if [ "$TRAVIS_BRANCH" == "master" ]; then npm run doc:publish; fi
after_success:
- npm run semantic-release
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"