Merge pull request #1702 from CEED/jeremy/get-ceed-object #7349
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ARM and IBM Power | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
compiler: [gcc-13] | |
arch: [aarch64, ppc64le] | |
distro: [ubuntu22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Environment setup | |
uses: actions/checkout@v4 | |
- name: Hardware setup and test libCEED | |
uses: uraimo/run-on-arch-action@v2 | |
env: | |
CC: ${{ matrix.compiler }} | |
FC: gfortran-13 | |
id: runcmd | |
with: | |
arch: ${{ matrix.arch }} | |
distro: ${{ matrix.distro }} | |
run: | | |
apt-get -y update | |
apt-get install -y build-essential | |
apt-get install -y gfortran | |
apt-get install -y python3 | |
uname -a | |
make info | |
make -j2 | |
PROVE_OPTS=-v make prove -j2 |