Merge pull request #126 from stan-dev/new-stan-rng #64
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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: Stanfunctions Support | |
jobs: | |
stanfunctions-support: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | |
- {os: ubuntu-latest, r: 'release'} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: ${{ matrix.config.r }} | |
http-user-agent: ${{ matrix.config.http-user-agent }} | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: local::. rcmdcheck BH RcppParallel RcppEigen Rcpp rstan StanHeaders RCurl remotes V8 | |
- name: Checkout lgpr package | |
run: | | |
git clone https://github.com/jtimonen/lgpr | |
- name: Check against CRAN StanHeaders and CRAN RStan | |
run: | | |
rcmdcheck::rcmdcheck(path = "lgpr", args = c("--no-manual", "--as-cran"), build_args = "--no-manual") | |
shell: Rscript {0} | |
- name: Install Development StanHeaders and CRAN RStan | |
run: | | |
Sys.setenv(MAKEFLAGS=paste0("-j",parallel::detectCores())) | |
install.packages("StanHeaders", repos = c("https://mc-stan.org/r-packages/", getOption("repos"))) | |
install.packages('rstan', type='source') | |
shell: Rscript {0} | |
- name: Check against Development StanHeaders and CRAN RStan | |
run: | | |
rcmdcheck::rcmdcheck(path = "lgpr", args = c("--no-manual", "--as-cran"), build_args = "--no-manual") | |
shell: Rscript {0} | |
- name: Install Development StanHeaders and Development RStan | |
run: | | |
Sys.setenv(MAKEFLAGS=paste0("-j",parallel::detectCores())) | |
install.packages("StanHeaders", repos = c("https://mc-stan.org/r-packages/", getOption("repos"))) | |
install.packages("rstan", repos = c("https://mc-stan.org/r-packages/", getOption("repos"))) | |
shell: Rscript {0} | |
- name: Check against Development StanHeaders and Development RStan | |
run: | | |
rcmdcheck::rcmdcheck(path = "lgpr", args = c("--no-manual", "--as-cran"), build_args = "--no-manual") | |
shell: Rscript {0} | |
- name: Checkout RStan Experimental branch | |
uses: actions/checkout@v3 | |
with: | |
repository: stan-dev/rstan | |
ref: experimental | |
path: rstan | |
submodules: 'recursive' | |
- name: Install Experimental StanHeaders and Experimental RStan | |
run: | | |
Sys.setenv(MAKEFLAGS=paste0("-j",parallel::detectCores())) | |
install.packages("rstan/StanHeaders", type = "source", repos = NULL) | |
install.packages("rstan/rstan/rstan", type = "source", repos = NULL) | |
shell: Rscript {0} | |
- name: Check against Experimental StanHeaders and Experimental RStan | |
run: | | |
rcmdcheck::rcmdcheck(path = "lgpr", args = c("--no-manual", "--as-cran"), build_args = "--no-manual") | |
shell: Rscript {0} | |