Skip to content

Commit 7c8dcb7

Browse files
committedNov 30, 2015
Added secure keys for Travis CI.
1 parent fcf450d commit 7c8dcb7

File tree

1 file changed

+26
-31
lines changed

1 file changed

+26
-31
lines changed
 

‎.travis.yml

+26-31
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,47 @@
11
language: cpp
2-
32
compiler:
4-
- gcc
5-
- clang
6-
3+
- gcc
4+
- clang
75
before_install:
8-
- echo $LANG
9-
- echo $LC_ALL
10-
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install -y llvm-3.4 llvm-3.4-dev; fi
11-
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install llvm35 && brew link --force llvm35; fi
12-
- rvm use $RVM --install --binary --fuzzy
13-
- gem update --system
14-
- gem --version
15-
6+
- echo $LANG
7+
- echo $LC_ALL
8+
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install -y llvm-3.4 llvm-3.4-dev; fi
9+
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install llvm35 && brew link --force llvm35; fi
10+
- rvm use $RVM --install --binary --fuzzy
11+
- gem update --system
12+
- gem --version
1613
before_script:
17-
- travis_retry bundle
18-
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config llvm-config-3.4; fi
19-
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure; fi
20-
14+
- travis_retry bundle
15+
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config llvm-config-3.4; fi
16+
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure; fi
2117
script: rake ci
22-
2318
after_success:
24-
- if [ $TRAVIS_BRANCH == $TRAVIS_TAG ]; then rake deploy; fi
25-
19+
- if [ $TRAVIS_BRANCH == $TRAVIS_TAG ]; then rake deploy; fi
2620
branches:
2721
only:
28-
- master
29-
- 1.8.7
30-
- 2.2
31-
- /^v\d+\./
32-
22+
- master
23+
- 1.8.7
24+
- 2.2
25+
- "/^v\\d+\\./"
3326
notifications:
3427
email: false
3528
irc:
3629
channels:
37-
- "chat.freenode.net#rubinius"
30+
- chat.freenode.net#rubinius
3831
template:
39-
- "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"
32+
- "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"
4033
webhooks:
4134
urls:
42-
- https://webhooks.gitter.im/e/9502afd22ca6c8e85fb3
35+
- https://webhooks.gitter.im/e/9502afd22ca6c8e85fb3
4336
on_success: change
4437
on_failure: always
4538
on_start: always
46-
4739
env:
40+
matrix:
4841
- RVM=2.2.0 LANG="en_US.UTF-8"
49-
42+
global:
43+
- secure: olbok/GN6rOYvPnHBYWGz7giCoCdLFpT/7WSBHukYO3E0uNeqAUOOgW2BFOwCVWdSEJ/iTvJXZQ4qVZHX+6jRfvILZeGv+D2P93VdD8UFQRoTOfFC7esAo525s9fuKm9ehUGWZxlzGOBHHckky1jn6pEf8mlXAVM5e76dlH0fck=
44+
- secure: aqG9eB/PrzQ7XJQN6YX/00sNVvwSB77saxXQzguL2WFjAXB74h6168Hzq+awHtNX/vfOb6ta7fpWLHrA0D+gmZnvTR29VlP6nd0vs1tkdX1/jWbiBHjamRffp+NWVdKbJKYn5iLOGXcuUMOzY/opLKOdvxKZfkxGMxR2tTNLZUE=
5045
os:
51-
- linux
52-
- osx
46+
- linux
47+
- osx

2 commit comments

Comments
 (2)

yorickpeterse commented on Nov 30, 2015

@yorickpeterse
Contributor

Seems this commit messed up the indentation in some parts.

brixen commented on Nov 30, 2015

@brixen
MemberAuthor

That was the reformatting that the travis gem did. I decided not to fight it since I expect it will 1. be consistent across changes made by the travis gem, and 2. there will be further automated changes by the travis gem.

Please sign in to comment.