Skip to content

Update yt documentation (#1832) #17

Update yt documentation (#1832)

Update yt documentation (#1832) #17

Workflow file for this run

name: 🧲 MHD-WaveTests-ASAN
on:
push:
branches: [ development ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ development ]
merge_group:
branches: [ development ]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-mhd-wave-tests-asan
cancel-in-progress: true
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
permissions:
contents: read
jobs:
check_changes:
uses: ./.github/workflows/check_changes.yml
with:
workflow_file: '.github/workflows/mhd-asan.yml'
build:
runs-on: ubuntu-latest
needs: check_changes
if: needs.check_changes.outputs.has_non_docs_changes == 'true'
env:
CCACHE_COMPRESS: '1'
CCACHE_COMPRESSLEVEL: '10'
CCACHE_MAXSIZE: 450M
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.2.2
with:
submodules: true
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install gcc g++ python3-dev python3-numpy python3-matplotlib python3-pip libopenmpi-dev libhdf5-mpi-dev
- name: Install ccache
run: .github/workflows/dependencies/dependencies_ccache.sh
- name: Set Up Cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.cache/ccache
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }}
restore-keys: |
ccache-${{ github.workflow }}-${{ github.job }}-git-
- name: Install Canary
run: python3 -m pip install canary-wm==25.10.7
- name: Initialize ccache
run: |
ccache --version
ccache -z
- name: Configure CMake with ASAN
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DAMReX_SPACEDIM=3 -DENABLE_ASAN=ON
- name: Get MHD test executables
working-directory: ${{runner.workspace}}/build
shell: bash
run: |
# Find all CTestTestfile.cmake files that contain MHD label and extract executable names
grep -l "LABELS.*MHD" $(find . -name "CTestTestfile.cmake") | while read file; do
# Extract the executable path from add_test line
grep "add_test" "$file" | head -1 | sed 's/.*add_test([^"]*"//;s/".*//' | xargs basename
done | sort -u > mhd_executables.txt
echo "MHD test executables to build:"
cat mhd_executables.txt
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
# Build all MHD test targets
run: |
# Read the executables and build them
TARGETS=$(cat mhd_executables.txt | tr '\n' ' ')
echo "Building targets: $TARGETS"
cmake --build . --config $BUILD_TYPE --parallel 4 --target $TARGETS
- name: Create test output directory
run: cmake -E make_directory $GITHUB_WORKSPACE/tests
- name: Test with ASAN
working-directory: ${{runner.workspace}}/build
shell: bash
env:
ASAN_OPTIONS: detect_leaks=0:print_stats=1:check_initialization_order=1:strict_string_checks=1:detect_stack_use_after_return=1
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
# Execute all tests with MHD label, excluding the slow cases
run: canary run --output-on-failure --workers=1 -k "MHD and not FastWave and not BrioWuShockTube and not MHDQuirk and not HydroWaveConvergence and not FastWaveConvergence and not EntropyWaveConvergence and not AlfvenWaveLinearConvergence" .
- name: ccache stats
if: always()
run: |
ccache -s
du -hs ~/.cache/ccache
- name: Upload test output
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-results-asan
path: ${{github.workspace}}/tests