Fix SIMD ifdefs in ngpFieldOps (#1322) #1690
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: Nalu-Wind-CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
Formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v4 | |
- name: Check formatting | |
uses: DoozyX/[email protected] | |
with: | |
source: 'nalu.C unit_tests.C ./include ./src ./unit_tests' | |
extensions: 'H,h,cpp,C' | |
clangFormatVersion: 18 | |
CPU-Trilinos: | |
needs: Formatting | |
runs-on: ubuntu-latest | |
container: | |
image: ecpe4s/exawind-snapshot | |
env: | |
EXAWIND_MANAGER: /exawind-manager | |
E4S_MACHINE: true | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{github.token}} | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Tests | |
run: | | |
/bin/bash -c " \ | |
source ${EXAWIND_MANAGER}/start.sh && \ | |
mkdir -p ${EXAWIND_MANAGER}/environments/exawind && \ | |
cd ${EXAWIND_MANAGER}/environments/exawind && \ | |
ln -s ${GITHUB_WORKSPACE} nalu-wind && \ | |
spack-start && \ | |
spack -e e4s-build config add view:true && \ | |
spack -e e4s-build add cmake && \ | |
spack -e e4s-build install && \ | |
quick-create-dev -s nalu-wind@master+tioga+hypre && \ | |
spack manager external ${EXAWIND_MANAGER}/environments/e4s-build --exclude nalu-wind && \ | |
spack install && \ | |
spack cd -b nalu-wind && \ | |
spack build-env nalu-wind ctest -j $(nproc) -L unit --output-on-failure \ | |
" | |
CPU-Hypre-Only: | |
needs: Formatting | |
runs-on: ubuntu-latest | |
container: | |
image: ecpe4s/exawind-snapshot | |
env: | |
EXAWIND_MANAGER: /exawind-manager | |
E4S_MACHINE: true | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{github.token}} | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Tests | |
run: | | |
/bin/bash -c " \ | |
source ${EXAWIND_MANAGER}/start.sh && \ | |
mkdir -p ${EXAWIND_MANAGER}/environments/exawind && \ | |
cd ${EXAWIND_MANAGER}/environments/exawind && \ | |
ln -s ${GITHUB_WORKSPACE} nalu-wind && \ | |
spack-start && \ | |
spack -e e4s-build config add view:true && \ | |
spack -e e4s-build add cmake && \ | |
spack -e e4s-build install && \ | |
quick-create-dev -s nalu-wind@master+tioga+hypre~trilinos-solvers && \ | |
spack manager external ${EXAWIND_MANAGER}/environments/e4s-build --exclude nalu-wind && \ | |
spack install && \ | |
spack cd -b nalu-wind && \ | |
spack build-env nalu-wind ctest -j $(nproc) -L unit --output-on-failure \ | |
" |