-
-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Skip one more test on macOS * Add macOS-only CI runner * Adjust name to 'macos'
- Loading branch information
1 parent
26fcdb2
commit 9db1de4
Showing
3 changed files
with
49 additions
and
1 deletion.
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,40 @@ | ||
# Run CI for R using https://eddelbuettel.github.io/r-ci/ | ||
|
||
name: macos | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
_R_CHECK_FORCE_SUGGESTS_: "false" | ||
|
||
jobs: | ||
ci: | ||
strategy: | ||
matrix: | ||
include: | ||
- {os: macOS-latest} | ||
#- {os: ubuntu-latest} | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup | ||
uses: eddelbuettel/github-actions/r-ci-setup@master | ||
|
||
- name: Bootstrap | ||
run: ./run.sh bootstrap | ||
|
||
- name: Dependencies | ||
run: ./run.sh install_deps | ||
|
||
- name: Test | ||
run: ./run.sh run_tests | ||
|
||
#- name: Coverage | ||
# if: ${{ matrix.os == 'ubuntu-latest' }} | ||
# run: ./run.sh coverage |
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2024-08-20 Dirk Eddelbuettel <[email protected]> | ||
|
||
* inst/tinytest/test_sugar.R: Skip one more NA related test on arm64 | ||
and macOS as failure is seen at r-universe on arm64 | ||
|
||
* .github/workflows/macos.yaml: Add basic r-ci setup but dialed-down | ||
to macOS only (as Linux is covered via multiple Docker setups) | ||
|
||
2024-08-19 Dirk Eddelbuettel <[email protected]> | ||
|
||
* Contributing.md: Refreshed content | ||
|
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