Skip to content

Tests: abort on NaN solutions in linear solver tests #7934

Tests: abort on NaN solutions in linear solver tests

Tests: abort on NaN solutions in linear solver tests #7934

Workflow file for this run

name: 🐧 Ascent
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-insituvis
cancel-in-progress: true
jobs:
ascent:
name: Ascent
runs-on: ubuntu-24.04
if: github.event.pull_request.draft == false
env:
CXX: g++
CC: gcc
CMAKE_PREFIX_PATH: /ascent/install/lib/cmake/
container:
image: alpinedav/ascent:0.9.3
steps:
- uses: actions/checkout@v7
- name: Configure
run: |
. /ascent_docker_setup_env.sh
cmake -S . -B build \
-DCMAKE_CXX_STANDARD=20 \
-DCMAKE_BUILD_TYPE=Debug \
-DAMReX_ENABLE_TESTS=ON \
-DAMReX_FORTRAN=OFF \
-DAMReX_ASCENT=ON \
-DAMReX_CONDUIT=ON
- name: Build
run: |
. /ascent_docker_setup_env.sh
cmake --build build -j 4