-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.travis.yml
More file actions
71 lines (54 loc) · 2.36 KB
/
.travis.yml
File metadata and controls
71 lines (54 loc) · 2.36 KB
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
# Travis CI configuration file to validate and deploy
# the GNU ARM Eclipse 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 14 containers.
dist: trusty
sudo: false
# https://docs.travis-ci.com/user/languages/ruby/
language: ruby
rvm:
- 2.3.1
# all commits required for jekyll-last-modified-at
git:
depth: 999999999
env:
global:
- GITHUB_DEST_REPO="gnuarmeclipse/gnuarmeclipse.github.io"
- GIT_COMMIT_USER_EMAIL="ilg@livius.net"
- GIT_COMMIT_USER_NAME="Travis CI"
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
# The secure token is 'GITHUB_TOKEN=...' generated for
# gnuarmeclipse/gnuarmeclipse.github.io-source
- secure: "Hu0UAeuTh1nuhwCZbRokayJ+6ETqkxV351nBUrbRpopKKQ9tzo0k76a0jrzy8UPkUyLva0fh+99H6zEedEkle5o7sxohmef53SZzLOtGQHLM38typ66+dbkKLFTgb4dH7sqXcLrp85ix4KvO3CsM65mSULTZKiO6SCo/pGzU7AFe0OXiPiuo8npjHPVj8sPT0N6/n+Jxd/XJGrwJNRCfiVEl9R3J9Z/ZTmQqX8c6uXLePB7ZNq2cCNo/A6H0Q46JzK/w9PpnfJAGUHl/Om1rF4nkSyx4N9CzTGDH47GCM68UcikKrhF8eDxOCoESFIRM7X5jE0nujl7G++OAS/GoBHfAVfX5nacV7COx3idHMfI1nkh+BvlHcigYYGvmZPw0AOh0ZVFkAqyehljUA3Ca4J2YtMXh4fAS5QoBrLKjGeGIEhyp8a0WuHuELnPAlT9oXynl5W4Ath1iSIl4gMumFVoJWNHfZFPTfaaN2GoXbeiFNmNmzhc6fMUofdvEhI6Bdt1+w2sgceRyJAUI1fYmWwyM1dH4FF+CSU/r6V6XqnUCaaLUcekpWTh27/oVMwRLXtZB2miWZoHfdTYVzgrE4nZKIzMyxkQ7K4fIU2gFnaGloz6s45DYwqoNpG2d8V1KzwM0DdnNQT9TRNitoMP+l9PxRH1mib5siZ7Pmzac3UM="
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
# -----------------------------------------------------------------------------