restore previous ignore statement and remove static 1D call #38
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: 🐧 Ascent | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-insituvis | |
cancel-in-progress: true | |
jobs: | |
ascent: | |
name: Ascent | |
runs-on: ubuntu-20.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.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
. /ascent_docker_setup_env.sh | |
cmake -S . -B build \ | |
-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 | |