forked from jianan/qtlpvl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (33 loc) · 1.19 KB
/
.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
39
40
41
42
# edit from https://github.com/craigcitro/r-travis/blob/master/sample.travis.yml
# Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
language: c
before_install:
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
- chmod 755 ./travis-tool.sh
- ./travis-tool.sh bootstrap
install:
- ./travis-tool.sh install_deps
- ./travis-tool.sh install_r roxygen2
script: ./travis-tool.sh run_tests
on_failure:
- ./travis-tool.sh dump_logs
notifications:
email:
on_success: change
on_failure: change
after_success:
- git config --global user.email "[email protected]"
- git config --global user.name "Chenliang Xu"
- curl -OL https://github.com/luckyrandom/r-deploy-git/raw/master/deploy-service.sh
- chmod 755 ./deploy-service.sh
- ./deploy-service.sh -s master-src -d master -c 'make -k doc'
env:
global:
secure: "I+IlrxePtZNcDxDsP0/jBGAyH0dAN9ZyZwui8UOSgFCs+0NHiTGSr4AVd0HmfzpuPwCh0TL+mtFkPNdfV05onYmHUQc8eCCcpHz6AlGHOojVK66ODcTlRa7t6BgsGRfhAPRQALJU55wCTH4xL9w1scyMgfUabdBgSih/HrNbNoc="
branches:
except:
- master-pkg