aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2022-11-11 14:05:41 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2022-11-11 14:05:41 +0100
commitf4b487c7677c9c228bdc11851bc7f932c5311e38 (patch)
tree5b297700b35f77d27c3dd706d95a80c855e80222 /.travis.yml
parent6b9d255583aa798482cd02e0a27cda0c7867a39e (diff)
Update docs, use run.sh on travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml41
1 files changed, 27 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml
index 5664e9a..80986f3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,15 +1,28 @@
-language: r
-cache: packages
-r:
- - release
- - devel
-cache: packages
-repos:
- CRAN: https://cloud.r-project.org
- https: https://jranke.github.io/drat
-r_packages:
- - webchem
-github_packages:
- - r-lib/covr
+language: c
+sudo: required
+dist: focal
+
+jobs:
+ include:
+ - name: linux
+ os: linux
+
+env:
+ global:
+ - USE_BSPM="true"
+
+before_install:
+ - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
+ - ./run.sh bootstrap
+
+install:
+ - ./run.sh install_all
+
+script:
+ - ./run.sh run_tests
+
+after_failure:
+ - ./run.sh dump_logs
+
after_success:
- - Rscript -e 'covr::codecov()'
+ - travis_wait ./run.sh coverage

Contact - Imprint