-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
82 lines (63 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# To check the status of the CI job:
# https://travis-ci.com/github/eclipse-embed-cdt/web-jekyll
# Travis CI configuration file to validate and deploy
# the Eclipse Embedded CDT Jekyll site.
# https://docs.travis-ci.com/user/getting-started/
# https://docs.travis-ci.com/user/multi-os/
os:
- linux
# https://docs.travis-ci.com/user/trusty-ci-environment/
# Use the new Debian 18 containers.
dist: bionic
sudo: false
# https://docs.travis-ci.com/user/languages/ruby/
language: ruby
rvm:
- 2.6.3
addons:
apt:
packages:
- libcurl4-openssl-dev
# all commits required for jekyll-last-modified-at
git:
depth: 999999999
env:
global:
- GITHUB_DEST_REPO="eclipse-embed-cdt/eclipse-embed-cdt.github.io"
- GITHUB_PREVIEW_REPO="eclipse-embed-cdt/web-preview"
- GIT_COMMIT_USER_EMAIL="[email protected]"
- GIT_COMMIT_USER_NAME="Travis CI"
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
# https://docs.travis-ci.com/user/encryption-keys/
# The secure token generated with:
# travis login --pro
# travis encrypt --pro -r eclipse-embed-cdt/web-jekyll GITHUB_TOKEN=XX...XX
- secure: "EiZMXL+zxM44LZAwiC+6IvJ3IVfys/YQWIHLaFKk390PLMOc46tLMtll6NswgT4yz8oE6ZF+zo+UdaufRlCgMKnP0IxZu7beArJjTb2079+s+rKL6whyUHgRvhvLjQNWsZ6zuyRnrSgAnnRDZOH+qvitHjEWxm3lj0S7kdC6GNDfop4hVI7ES114jRVCbU3C83fNxeRkon41CgAqgjlwEZ7gBI8QbvDephRbWmSkiQOOiRQ2imMtKISaQpZ4eTcfUiobhJAjB1EwVVofegcBzaWpsM5m5Ul2p1n+Gjhjz1/6nJ916obdtvT+SvrhBSKIx1ycOzxHKX1KCurSBdB/1DCkvCVvldTpXyfyQ3VAlk8xaEny7OFuVzDhwcn9ENMylvb2uuhezZ5cQvDRIP4WytM8mI47dyzwRBgIM4ZBPtiggFG4A/YtfzLBUy3QIbbliUkpt1G8mJnrc16NPcHauO67UvUWJyz5l2ef46J6Vq0wrfdcG4wceHlRGeHKMRCYMtGPEaHrS9iISLdioRRuM87SQ/wcXLma6UBjytbbInoNZtHcjUgferI1dq3pikZ/RoobEnWumOTyqbVmzO3GYMoVbmiwKzaNKD6F6lHN8zd5Hz9hx1jY7weiunexgb0DlpcYMESEGQDUQPcpPiMH2BcgV+ys8TSX3CrwhQUzUt0="
notifications:
email:
on_success: always # default: change
on_failure: always # default: always
cache:
bundler: true
# -----------------------------------------------------------------------------
before_install:
- bash scripts/travis.linux.sh before_install
before_script:
- bash scripts/travis.linux.sh before_script
script:
- bash scripts/travis.linux.sh script
# -----------------------------------------------------------------------------
# Unused.
# after_success:
# - bash scripts/travis.linux.sh after_success
# after_failure:
# - bash scripts/travis.linux.sh after_failure
# Deploy via script not functional (or not understood).
# deploy:
# provider: script
# script: bash scripts/travis.linux.sh deploy
# on:
# branch: master
# after_script:
# - bash scripts/travis.linux.sh after_script
# -----------------------------------------------------------------------------