shell #185
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
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. | |
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions | |
on: | |
push: | |
branches: | |
- master | |
- oldrel-ci | |
pull_request: | |
branches: | |
- master | |
- survival-rstantools | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.rstan }} RStan - ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { os: macOS-latest, r: 'devel' } | |
- { os: macOS-latest, r: 'release' } | |
- { os: macOS-latest, r: 'oldrel' } | |
- { os: windows-latest, r: 'devel' } | |
- { os: windows-latest, r: 'release' } | |
- { os: windows-latest, r: 'oldrel' } | |
- { os: ubuntu-latest, r: 'devel' } | |
- { os: ubuntu-latest, r: 'release' } | |
- { os: ubuntu-latest, r: 'oldrel' } | |
env: | |
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
RSPM: ${{ matrix.config.rspm }} | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
TESTTHAT_CPUS: 4 | |
steps: | |
- uses: n1hility/cancel-previous-runs@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'" | |
- uses: actions/checkout@main | |
- uses: r-lib/actions/setup-r@v2-branch | |
with: | |
r-version: ${{ matrix.config.r }} | |
- uses: r-lib/actions/setup-pandoc@v2-branch | |
- uses: r-lib/actions/setup-r-dependencies@v2-branch | |
with: | |
extra-packages: any::rcmdcheck any::betareg any::HSAUR3 any::biglm any::gamm4 any::V8 | |
- name: Reinstall Matrix and lme4 from source on Win OldRel (ABI change) | |
if: matrix.config.r == 'oldrel' && matrix.config.os == 'windows-latest' | |
run: | | |
install.packages("https://cran.r-project.org/src/contrib/Matrix_1.7-0.tar.gz", type = "source") | |
install.packages("https://cran.r-project.org/src/contrib/lme4_1.1-35.3.tar.gz", type = "source") | |
shell: Rscript {0} | |
- name: Add flags to Makevars | |
run: | | |
mkdir -p ~/.R | |
echo "CXXFLAGS= -w -ftemplate-backtrace-limit=0" >> ~/.R/Makevars | |
- uses: r-lib/actions/check-r-package@v2-branch |