Skip to content

Commit

Permalink
Never ending bugfix in .travis.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
rubak committed Apr 2, 2016
1 parent f571dee commit b36db26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ os:
r_github_packages:
- jimhester/covr
after_success:
- if [["$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "osx")]]; then R CMD INSTALL --build $PKG_TARBALL; fi
- if [["$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "linux")]]; then R CMD INSTALL $PKG_TARBALL; fi
- if [["$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "linux")]]; then Rscript -e 'covr::codecov(type = "examples")'; fi
- if [[ "$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "osx") ]]; then R CMD INSTALL --build $PKG_TARBALL; fi
- if [[ "$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "linux") ]]; then R CMD INSTALL $PKG_TARBALL; fi
- if [[ "$TRAVIS_R_VERSION" != "devel" && ("$TRAVIS_OS_NAME" == "linux") ]]; then Rscript -e 'covr::codecov(type = "examples")'; fi
deploy:
provider: releases
api_key:
Expand Down

0 comments on commit b36db26

Please sign in to comment.