-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Point Travis to KentonWhite account Install gfortran Looks like upgrade to gcc7 no longer installers fortran Tavis install r-base-dev Looks to be a better solution: https://stackoverflow.com/questions/6302209/building-r-package-getting-error-ld-cannot-find-lgfortran Install suggests packages from binaries Speeds up the testing process Prevent failing when packages can't be installed Fixed small type in binaries list Moved to container based projects Use copmiler defaults for R-travis
- Loading branch information
1 parent
1a12153
commit 6e85acc
Showing
2 changed files
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
language: r | ||
sudo: required | ||
sudo: false | ||
cache: packages | ||
warnings_are_errors: true | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-4.9 | ||
- g++-4.9 | ||
- unixodbc-dev | ||
- r-cran-rodbc | ||
before_install: | | ||
mkdir ~/.R | ||
cat <<EOF > ~/.R/Makevars | ||
CXX=g++-4.9 | ||
CXX1X=g++-4.9 | ||
CXX1XSTD=-std=c++11 | ||
r_github_packages: | ||
- johnmyleswhite/log4r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters