-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
39 lines (31 loc) · 906 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
39
# Sample .travis.yml for R projects
language: r
matrix:
include:
- os: linux
dist: bionic
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
bioc_check: true
before_install:
- wget 'http://downloads.sourceforge.net/project/sbml/libsbml/5.11.4/stable/libSBML-5.11.4-core-src.tar.gz?r=&ts=1435978044' -O /tmp/libsbml.tar.gz
- tar -xf /tmp/libsbml.tar.gz
- cd libsbml-5.11.4 && ./configure --prefix=/usr/local >/dev/null && sudo make install >/dev/null && cd .. && sudo rm -rf libsbml-5.11.4
# System dependencies for HTTP calling
apt_packages:
- libcurl4-openssl-dev
- libxml2-dev
env:
global:
- CRAN: http://cran.rstudio.com
notifications:
email:
on_success: change
on_failure: change
# Install the bleeding edge version of a package from github (eg to pick
# up a not-yet-released bugfix)
# r_github_packages:
# - igraph/rigraph