Skip to content

Commit a66bea3

Browse files
authored
Merge pull request #1765 from CEED/jeremy/restore-ibm-ci
ci - restore IBM testing
2 parents 15e1ad1 + d402b6f commit a66bea3

File tree

5 files changed

+47
-7
lines changed

5 files changed

+47
-7
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: IBM Power
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]
14+
compiler: [gcc-13]
15+
arch: [ppc64le]
16+
distro: [ubuntu22.04]
17+
18+
runs-on: ${{ matrix.os }}
19+
20+
steps:
21+
- name: Environment setup
22+
uses: actions/checkout@v4
23+
- name: Hardware setup and test libCEED
24+
uses: uraimo/run-on-arch-action@v3
25+
env:
26+
CC: ${{ matrix.compiler }}
27+
FC: gfortran-13
28+
id: runcmd
29+
with:
30+
arch: ${{ matrix.arch }}
31+
distro: ${{ matrix.distro }}
32+
run: |
33+
apt-get -y update
34+
apt-get install -y build-essential
35+
apt-get install -y gfortran
36+
apt-get install -y python3
37+
uname -a
38+
make info
39+
make -j
40+
make prove -j

.github/workflows/c-fortran-test-arm64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
FC: gfortran-13
2525
run: |
2626
make info
27-
make -j2
28-
PROVE_OPTS=-v make prove -j2
27+
make -j
28+
make prove -j

.github/workflows/c-fortran-test-icc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232
export CC=icx CXX=icx FC=ifx
3333
export OPENMP=1
3434
make info
35-
make -j2
36-
PROVE_OPTS=-v make prove -j2
35+
make -j
36+
make prove -j
3737

.github/workflows/c-fortran-test-linux-osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
FC: gfortran-13
2525
run: |
2626
make info
27-
make -j2
28-
PROVE_OPTS=-v make prove -j2
27+
make -j
28+
make prove -j

.github/workflows/c-fortran-test-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
FC: gfortran-11
3030
run: |
3131
make info
32-
make format-c -j2 CLANG_FORMAT=clang-format-18 && git diff --exit-code
32+
make format-c -j CLANG_FORMAT=clang-format-18 && git diff --exit-code

0 commit comments

Comments
 (0)