Skip to content

Commit

Permalink
add catalyst build test action
Browse files Browse the repository at this point in the history
  • Loading branch information
c-wetterer-nelson committed Dec 20, 2023
1 parent 7d6bbd6 commit c51c841
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/catalyst.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: 🐧 Catalyst

on: [push, pull_request]

concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-insituvis
cancel-in-progress: true

jobs:
catalyst:
name: Catalyst
runs-on: ubuntu-22.04
if: github.event.pull_request.draft == false
env:
CXX: g++
CC: gcc
container:
image: cwetterernelson/catalyst:v2
steps:
- uses: actions/checkout@v3
- name: Configure
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Debug \
-DAMReX_ENABLE_TESTS=ON \
-DAMReX_FORTRAN=OFF \
-DAMReX_CATALYST=ON \
-DAMReX_CONDUIT=ON
- name: Build
run: |
cmake --build build -j 2

0 comments on commit c51c841

Please sign in to comment.