-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New data collected at 2024-09-23_00-02-15
- Loading branch information
1 parent
5a3d3a2
commit 60ebfe7
Showing
9 changed files
with
64 additions
and
14 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,53 @@ | ||
on: | ||
workflow_dispatch: | ||
|
||
name: rhel.yaml | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
rhel: | ||
runs-on: ubuntu-latest | ||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
# cannot run the nodejs actions because RHEL7 cannot run node20 | ||
# - { os: rhel7, r: release, key: REDHAT_ACTIVATION_KEY_RHEL7 } | ||
- { os: rhel8, r: release, key: REDHAT_ACTIVATION_KEY_RHEL8 } | ||
- { os: rhel9, r: release, key: REDHAT_ACTIVATION_KEY_RHEL9 } | ||
container: | ||
image: ghcr.io/r-hub/containers/${{ matrix.config.os }}:latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Register | ||
run: | | ||
subscription-manager register \ | ||
--org ${{ secrets.REDHAT_ORG }} \ | ||
--activationkey ${{ secrets[matrix.config.key] }} | ||
shell: bash | ||
|
||
- name: Install R | ||
if: ${{ matrix.config.r != 'release' }} | ||
run: | | ||
rig add ${{ matrix.config.r }} | ||
shell: bash | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")' | ||
env: | ||
NOT_CRAN: true | ||
|
||
- name: Unregister | ||
if: always() | ||
run: | | ||
subscription-manager unregister || true |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ ipch | |
*.filters | ||
*.user | ||
*log | ||
rmm_log.txt | ||
Debug | ||
*suo | ||
.Rhistory | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,3 @@ Makefile | |
^codecov\.yml$ | ||
^NEWS\.md$ | ||
^cran-comments\.md$ | ||
vignettes/knitr-refcard.lyx |