Skip to content

Commit fd831f2

Browse files
committed
ci - use native hardware for ARM testing
1 parent a25b814 commit fd831f2

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: ARM
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-24.04-arm]
14+
compiler: [gcc-13, clang]
15+
16+
runs-on: ${{ matrix.os }}
17+
18+
steps:
19+
- name: Environment setup
20+
uses: actions/checkout@v4
21+
- name: Build and test libCEED
22+
env:
23+
CC: ${{ matrix.compiler }}
24+
FC: gfortran-13
25+
run: |
26+
make info
27+
make -j2
28+
PROVE_OPTS=-v make prove -j2

.github/workflows/c-fortran-test-hardware.yml renamed to .github/workflows/c-fortran-test-ppc64le.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ARM and IBM Power
1+
name: IBM Power
22

33
on:
44
push:
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os: [ubuntu-24.04]
1414
compiler: [gcc-13]
15-
arch: [aarch64, ppc64le]
15+
arch: [ppc64le]
1616
distro: [ubuntu22.04]
1717

1818
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)