forked from AMReX-Codes/amrex
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 961 Bytes
/
catalyst.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: 🐧 Catalyst
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-insituvis-catalyst
cancel-in-progress: true
jobs:
check_changes:
uses: ./.github/workflows/check_changes.yml
catalyst:
name: Catalyst
runs-on: ubuntu-22.04
needs: check_changes
if: github.event.pull_request.draft == false && needs.check_changes.outputs.has_non_docs_changes == 'true'
env:
CXX: g++
CC: gcc
CMAKE_PREFIX_PATH: "/opt/conduit:/opt/catalyst"
container:
image: kitware/paraview:ci-catalyst-amrex-warpx-20240701
steps:
- uses: actions/checkout@v4
- 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 4