This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
47 lines (39 loc) · 1.66 KB
/
.travis.yml
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
44
45
46
47
language: ruby
cache:
bundler: true
directories:
- node_modules #NPM packages
rvm:
- 2.3.3
addons:
apt:
packages:
- node
env:
global:
- secure: "GlQzFjz9m4v6aYbvA00unpmqp1apd2iGBg5iTWJ9ImvtpkLiHasp7L8UrtrCvii0Af2eyDWBwve2A/sohImzLec95MyJg4dc0b0cicTftNScmVG4Gsbl9e+0lwzbC2n0Ne15x7jrrgLI2O50lWvgZ0MLSbYaIPQ5yfZnRcTCZTfghVxgKmkWZwPKEnDiyiRkHTKBkfAG+NBM/IiI6TlIUCW5TBqUY8qyZ10KWZgqL2i+j315qUQ46+rZYYknM0c4QUqmldhYJDdb3ch8j7/duytKGLxMZMCvXZCZ+8KDPN9ax0miuwB3S/3Qwz5JtH2sijtXX3FalGM+ALJ3nCk9yJZcjs+bVHH8rvhXCKh8l4+5XPC7fHsK5UB4a6yVPxr3cIpPFo5HrYCsJmcK6LyOqPeGKZVHZdoAJ41ztRJ8S7IXg+fJgGBUXCCAJ8ddtlPg9mngCVPDio66rVnWSnpIgpb0pxUEUzExtlHg6FRZCcvHEWGpBJyZetSlmoF8j/M0K38VqKFfridln2sJhypdIYO1j1wUwrrGCxOBBEz9o4ebFyuyCIbG8/IE4FparmwhxVLCpH2KYO24jiILuK6ExuJ/KF1GRtgXoMKXqHG9hJNukX42QUmUa89XEhcCViUNJVxL0s/OzI3FZHw/1pTPG4eHtlhakv8hwlK2YkyDKVU="
- TRIGGER_REPO_SLUG: "fabric8-ui/fabric8-ux"
- TRIGGER_REPO_BRANCH: "master"
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
before_install:
- npm install
- npm run refresh
- gem install jekyll
install: true
script:
- jekyll build ./_site
# branch whitelist, only for GitHub Pages
branches:
only:
- master
# - gh-pages # test the gh-pages branch
- /.*/ # build all branches
# - /pages-(.*)/ # test every branch which starts with "pages-"
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash deploy.sh
# deploy:
# skip_cleanup: true
# on:
# branch: master
sudo: false # route your build to the container-based infrastructure for a faster build