Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor edits & updates to vignettes #224

Merged
merged 4 commits into from
Dec 14, 2023

Skip `search_all()` tests on CRAN

7c11b04
Select commit
Loading
Failed to load commit list.
Merged

Minor edits & updates to vignettes #224

Skip `search_all()` tests on CRAN
7c11b04
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Dec 14, 2023 in 45s

Build Errored

The build errored, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #224 Minor edits & updates to vignettes.
Any changes that have been made to the main branch before the build ran are also included.

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"
          }
        ]
      }
    ]
  }
}