-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (26 loc) · 973 Bytes
/
.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
sudo: false
language: ruby
cache: bundler
rvm:
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0.0
- ruby-head
before_install:
- git --version
- git config --global user.email "[email protected]"
- git config --global user.name "Lolcommits"
matrix:
allow_failures:
- rvm: ruby-head
env:
global:
- CC_TEST_REPORTER_ID=d05d34f48230381d001225814f03f19b92c757fa9b795a7f5b16a17ebd027ee8
- GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT