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 17
17
- {os: macos-latest}
18
18
- {os: macos-13}
19
19
# - {os: ubuntu-latest}
20
- - {os: ubuntu-24.04-arm}
20
+ # - {os: ubuntu-24.04-arm}
21
21
22
22
runs-on : ${{ matrix.os }}
23
23
Original file line number Diff line number Diff line change 3
3
* inst/tinytest/test_sugar.R: Condition four NA-related tests away on
4
4
arm64 on Linux too
5
5
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
7
8
8
9
2025-04-15 Dirk Eddelbuettel <edd@debian.org>
9
10
You can’t perform that action at this time.
0 commit comments