Skip to content

Commit

Permalink
Merge pull request #1733 from CEED/jeremy/ci-arm
Browse files Browse the repository at this point in the history
Use native hardware for ARM testing
  • Loading branch information
jeremylt authored Jan 21, 2025
2 parents a25b814 + fd831f2 commit a0c3296
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/c-fortran-test-arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ARM

on:
push:
branches:
- main
pull_request:

jobs:
test:
strategy:
matrix:
os: [ubuntu-24.04-arm]
compiler: [gcc-13, clang]

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

steps:
- name: Environment setup
uses: actions/checkout@v4
- name: Build and test libCEED
env:
CC: ${{ matrix.compiler }}
FC: gfortran-13
run: |
make info
make -j2
PROVE_OPTS=-v make prove -j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ARM and IBM Power
name: IBM Power

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
matrix:
os: [ubuntu-24.04]
compiler: [gcc-13]
arch: [aarch64, ppc64le]
arch: [ppc64le]
distro: [ubuntu22.04]

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit a0c3296

Please sign in to comment.