File tree 1 file changed +26
-31
lines changed
1 file changed +26
-31
lines changed Original file line number Diff line number Diff line change 1
1
language : cpp
2
-
3
2
compiler :
4
- - gcc
5
- - clang
6
-
3
+ - gcc
4
+ - clang
7
5
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
16
13
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
21
17
script : rake ci
22
-
23
18
after_success :
24
- - if [ $TRAVIS_BRANCH == $TRAVIS_TAG ]; then rake deploy; fi
25
-
19
+ - if [ $TRAVIS_BRANCH == $TRAVIS_TAG ]; then rake deploy; fi
26
20
branches :
27
21
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+\\ ./"
33
26
notifications :
34
27
email : false
35
28
irc :
36
29
channels :
37
- - " chat.freenode.net#rubinius"
30
+ - chat.freenode.net#rubinius
38
31
template :
39
- - " %{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"
32
+ - " %{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"
40
33
webhooks :
41
34
urls :
42
- - https://webhooks.gitter.im/e/9502afd22ca6c8e85fb3
35
+ - https://webhooks.gitter.im/e/9502afd22ca6c8e85fb3
43
36
on_success : change
44
37
on_failure : always
45
38
on_start : always
46
-
47
39
env :
40
+ matrix :
48
41
- 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=
50
45
os :
51
- - linux
52
- - osx
46
+ - linux
47
+ - osx
You can’t perform that action at this time.
2 commit comments
yorickpeterse commentedon Nov 30, 2015
Seems this commit messed up the indentation in some parts.
brixen commentedon Nov 30, 2015
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.