We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b670e commit 88acec7Copy full SHA for 88acec7
.github/workflows/R-CMD-check.yaml
@@ -49,4 +49,17 @@ jobs:
49
with:
50
upload-snapshots: true
51
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
52
- error-on: '"error"'
+ error-on: '"error"'
53
+
54
+ - name: Install BH
55
+ run: Rscript -e "install.packages('BH')"
56
57
+ - name: Install macOS Rtools
58
+ if: runner.os == 'macOS'
59
+ run: Rscript -e "install.packages('r-macos-rtools')"
60
61
+ - name: Configure Makevars
62
+ run: |
63
+ mkdir -p ~/.R
64
+ echo "CXX14FLAGS=-O3 -mtune=native -arch x86_64 -ftemplate-depth-256" >> ~/.R/Makevars
65
+ echo "CXX14=/usr/local/clang7/bin/clang++" >> ~/.R/Makevars
0 commit comments