Skip to content

Merge pull request #1452 from CEED/jrwrigh/stats_overwrite #166

Merge pull request #1452 from CEED/jrwrigh/stats_overwrite

Merge pull request #1452 from CEED/jrwrigh/stats_overwrite #166

name: C/Fortran
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-22.04, macos-12]
compiler: [gcc-11, clang]
include:
- os: ubuntu-22.04
asan: 1
runs-on: ${{ matrix.os }}
steps:
- name: Environment setup
uses: actions/checkout@v3
- name: Build and test libCEED
env:
CC: ${{ matrix.compiler }}
FC: gfortran-11
AFLAGS: -fsanitize=address -fsanitize=leak
ASAN: ${{ matrix.asan }}
run: |
make -v
make info
make -j2
PROVE_OPTS=-v make prove -j2