File tree Expand file tree Collapse file tree 3 files changed +41
-2
lines changed
Expand file tree Collapse file tree 3 files changed +41
-2
lines changed Original file line number Diff line number Diff line change 1+ # Run CI for R using https://eddelbuettel.github.io/r-ci/
2+
3+ name : linuxarm
4+
5+ on :
6+ # push:
7+ # pull_request:
8+ workflow_dispatch :
9+
10+ env :
11+ _R_CHECK_FORCE_SUGGESTS_ : " false"
12+
13+ jobs :
14+ ci :
15+ strategy :
16+ matrix :
17+ include :
18+ # - {os: ubuntu-latest}
19+ - {os: ubuntu-24.04-arm}
20+
21+ runs-on : ${{ matrix.os }}
22+
23+ steps :
24+ - name : Checkout
25+ uses : actions/checkout@v4
26+
27+ - name : Setup
28+ uses : eddelbuettel/github-actions/r-ci@master
29+
30+ - name : Dependencies
31+ run : ./run.sh install_deps
32+
33+ - name : Test
34+ run : ./run.sh run_tests
35+
36+ # - name: Coverage
37+ # if: ${{ matrix.os == 'ubuntu-latest' }}
38+ # run: ./run.sh coverage
Original file line number Diff line number Diff line change 1717 - {os: macos-latest}
1818 - {os: macos-13}
1919 # - {os: ubuntu-latest}
20- - {os: ubuntu-24.04-arm}
20+ # - {os: ubuntu-24.04-arm}
2121
2222 runs-on : ${{ matrix.os }}
2323
Original file line number Diff line number Diff line change 33 * inst/tinytest/test_sugar.R: Condition four NA-related tests away on
44 arm64 on Linux too
55
6- * .github/workflows/macos.yaml (jobs): Add ubuntu-24.04-arm to matrix
6+ * .github/workflows/linuxarm.yaml (jobs): Add ubuntu-24.04-arm as
7+ optional workflow_dispatch run
78
892025-04-15 Dirk Eddelbuettel <
[email protected] >
910
You can’t perform that action at this time.
0 commit comments