diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-11 14:14:51 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-11 14:14:51 +0100 |
commit | 0cefd24e422910d6aa6a2a1cbc9bb8e09e10222b (patch) | |
tree | 532ba82afc4b9cfa26d7679a891adb2b0d8919ff | |
parent | c3c0007bd76292d976bd7624bf72aa75e168128c (diff) |
Simplify travis config
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 33070708..64c27426 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,3 @@ -# Run CI for R using https://eddelbuettel.github.io/r-ci/ - language: c sudo: required dist: focal @@ -15,12 +13,10 @@ env: - NOT_CRAN="true" before_install: - - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh - - chmod 0755 run.sh + - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh - ./run.sh bootstrap install: - - ./run.sh install_r nlme - ./run.sh install_all - ./run.sh install_github jranke/saemixextension@installable_dev_version @@ -32,8 +28,3 @@ after_failure: after_success: - travis_wait ./run.sh coverage - -notifications: - email: - on_success: change - on_failure: change |