Skip to content

Skip some CIs if only Docs/ has changed #2633

Skip some CIs if only Docs/ has changed

Skip some CIs if only Docs/ has changed #2633

Workflow file for this run

name: smoke
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-smoke
cancel-in-progress: true
jobs:
check_changes:
uses: ./.github/workflows/check_changes.yml
multid:
name: GNU Multi-D
runs-on: ubuntu-latest
needs: check_changes
if: needs.check_changes.outputs.has_non_docs_changes == 'true'
steps:
- uses: actions/checkout@v4
- name: Dependencies
run: |
.github/workflows/dependencies/dependencies.sh
.github/workflows/dependencies/dependencies_clang-tidy-apt-llvm.sh 17
.github/workflows/dependencies/dependencies_ccache.sh
- name: Set Up Cache
uses: actions/cache@v4
with:
path: ~/.cache/ccache
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }}
restore-keys: |
ccache-${{ github.workflow }}-${{ github.job }}-git-
- name: Build & Install
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wnon-virtual-dtor -Wlogical-op -Wmisleading-indentation -Wduplicated-cond -Wduplicated-branches -Wmissing-include-dirs"}
run: |
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=10
export CCACHE_MAXSIZE=100M
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt
ccache -z
mkdir build
cd build
cmake .. \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DAMReX_SPACEDIM="1;2;3" \
-DAMReX_EB=ON \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
make -j 4
make install
make test_install
${{github.workspace}}/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt
make -j4 -k -f clang-tidy-ccache-misses.mak \
CLANG_TIDY=clang-tidy-17 \
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*"
mkdir ../Tests/SpackSmokeTest/build
cd ../Tests/SpackSmokeTest/build
cmake .. \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DAMReX_ROOT=../../../installdir \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
make -j 4
mpiexec -n 2 ./install_test ../../Amr/Advection_AmrCore/Exec/inputs-ci
ccache -s
du -hs ~/.cache/ccache