Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cf8da0d

Browse files
committedMay 5, 2025··
Check for arm-linux in new yaml, macos.yaml back to mac only
1 parent a4bdd7d commit cf8da0d

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed
 

‎.github/workflows/linuxarm.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

‎.github/workflows/macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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

‎ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
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

89
2025-04-15 Dirk Eddelbuettel <edd@debian.org>
910

0 commit comments

Comments
 (0)
Please sign in to comment.