Dev #250
Merged
Dev #250
Travis CI / Travis CI - Branch
required action
Nov 19, 2024 in 16m 7s
Build Errored
The build errored, just like the previous build.
Details
This is a normal build for the dev branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | R |
Operating System | Linux (Xenial) |
Build Configuration
{
"language": "r",
"os": [
"linux"
],
"dist": "xenial",
"sudo": false,
"cache": {
"packages": true
},
"addons": {
"apt": {
"update": true,
"packages": [
"libv8-3.14-dev",
"libmagick++-dev",
"libudunits2-dev",
"libgdal-dev",
"libnetcdf-dev",
"libharfbuzz-dev",
"libfribidi-dev",
"gcc-8",
"g++-8",
"gfortran-8"
]
}
},
"env": [
"global={:MAKEFLAGS=>\"\\\"-j 2\\\"\"}={:COMPILER=>\"g++-8\"}={:CC=>\"gcc-8\"}={:CXX=>\"g++-8\"}={:NOT_CRAN=>\"true\"}"
],
"before_install": [
"mkdir -p ~/.R && touch ~/.R/Makevars",
"VER=-8",
"echo \"CC=gcc$(VER)\" >> ~/.R/Makevars",
"echo \"CXX=g++$(VER)\" >> ~/.R/Makevars",
"echo \"CXX1X=g++$(VER)\" >> ~/.R/Makevars",
"echo \"FC=gfortran$(VER)\" >> ~/.R/Makevars",
"echo \"F77=gfortran$(VER)\" >> ~/.R/Makevars",
"sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8",
"sudo update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-8 60"
],
"warnings_are_errors": true,
"script": [
"R CMD build .\ntravis_wait 20 R CMD check galah*tar.gz\n"
],
"after_success": [
"if [[ \"${R_CODECOV}\" ]]; then travis_wait 20 Rscript -e 'covr::codecov()'; fi",
"test $TRAVIS_BRANCH = \"master\" && Rscript -e 'pkgdown::build_site()'"
],
"notifications": {
"slack": [
{
"rooms": [
{
"secure": "PGhowadCkFSLSmiBLbR5CZ6Bdkiaijz3PJ9GtBa6kLGtLtKIMkvK+9LrDkIdJuElNUNBz6iz4wqBlTaLOo83HEHt6Sf8nL1WcJfGQCaQMo0Xn/ivU0slwdjA08u9Trcr9UySNJGFbbwu3vzEevd6DityFRibEP4vm8t38tNttKM="
}
]
}
]
},
"deploy": [
{
"provider": "pages",
"strategy": "git",
"skip_cleanup": true,
"on": {
"branches": [
"main",
"master"
]
},
"token": "$GITHUB_PAT",
"keep_history": true,
"local_dir": "docs"
}
],
"jobs": {
"include": [
{
"os": "linux",
"r": "4.1.0",
"dist": "bionic",
"env": [
{
"BUILD_NAME": "release"
},
{
"DETAILS": "\"release build\""
},
{
"R_CODECOV": "true"
}
]
}
]
}
}
Loading