Skip to content

Commit

Permalink
Refine package build args in examples
Browse files Browse the repository at this point in the history
Closes #787.
  • Loading branch information
gaborcsardi committed Feb 27, 2024
1 parent c77fa90 commit 06d268b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/check-full.yaml
Expand Up @@ -60,3 +60,4 @@ jobs:
- uses: ./check-r-package
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions .github/workflows/check-release.yaml
Expand Up @@ -29,3 +29,4 @@ jobs:
- uses: ./check-r-package
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions .github/workflows/check-standard.yaml
Expand Up @@ -47,3 +47,4 @@ jobs:
- uses: ./check-r-package
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Expand Up @@ -39,7 +39,7 @@ jobs:
if: always()
run: |
## --------------------------------------------------------------------
find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash

- name: Upload test results
Expand Down
1 change: 1 addition & 0 deletions examples/check-full.yaml
Expand Up @@ -60,3 +60,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions examples/check-no-suggests.yaml
Expand Up @@ -55,3 +55,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions examples/check-release.yaml
Expand Up @@ -29,3 +29,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions examples/check-standard.yaml
Expand Up @@ -47,3 +47,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-build-vignettes","--compact-vignettes=gs+qpdf")'

0 comments on commit 06d268b

Please sign in to comment.