-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from andrjohns/standalone-functions
Fix compatibility for exporting standalone functions, add tests
- Loading branch information
Showing
3 changed files
with
91 additions
and
33 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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# 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 | ||
|
||
- name: Checkout lgpr package | ||
run: | | ||
git clone https://github.com/andrjohns/lgpr | ||
cd lgpr && git checkout function-exports | ||
- 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} | ||
|
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
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