forked from renkun-ken/formattable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (29 loc) · 781 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
30
31
32
33
34
35
36
37
38
## Sample .travis.yml file for use with metacran/r-builder
## See https://github.com/metacran/r-builder for details.
language: c
sudo: required
before_install:
- curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
- chmod 755 pkg-build.sh
- ./pkg-build.sh bootstrap
install:
- ./pkg-build.sh install_github jimhester/covr
- ./pkg-build.sh install_deps
script:
- ./pkg-build.sh run_tests
after_success:
- if [[ ! -z "$COVERAGE" ]];then ./pkg-build.sh run_script -e 'covr::codecov()'; fi
after_failure:
- ./pkg-build.sh dump_logs
notifications:
email:
on_success: change
on_failure: change
env:
matrix:
- RVERSION=oldrel
- RVERSION=release
- RVERSION=devel COVERAGE=true
branches:
except:
- gh-pages