Skip to content

Create self hosted CI #124

Create self hosted CI

Create self hosted CI #124

Workflow file for this run

# Now it is separated to avoid affecting MPICH is not compatible with Ubuntu-latest and bear is not compatible with OPENMPI. This workflow should be merged after either compatibility issue is resolved.
name: Clang-Tidy Check
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
clang-tidy-check:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy:
matrix:
build_type: [Release]
memory_test: [ON, OFF]
compiler: [g++]
language: ['cpp']
exclude:
- build_type: Release
memory_test: ON
- build_type: RelWithDebInfo
memory_test: OFF
steps:
- name: Update packages
run: sudo apt-get update
- name: Install mpich
run: sudo apt-get install -yq libmpich-dev mpich
- name: Install cmake
run: sudo apt-get install -yq cmake
- uses: actions/checkout@v4
- name: build Catch2
uses: ./.github/actions/install-repo
with:
repo-name: 'Catch2-openmpi'
repo-path: 'catchorg/Catch2'
repo-ref: 'v3.11.0'
cache: true
- name: build kokkos
uses: ./.github/actions/install-repo
with:
repo-name: 'kokkos-openmpi'
repo-path: 'kokkos/kokkos'
repo-ref: '4.6.01'
cache: true
options: '-DCMAKE_CXX_STANDARD=17
-DBUILD_SHARED_LIBS=OFF
-DKokkos_ENABLE_SERIAL=ON
-DKokkos_ENABLE_OPENMP=OFF
-DKokkos_ENABLE_CUDA=OFF
-DKokkos_ENABLE_CUDA_LAMBDA=OFF
-DKokkos_ENABLE_CUDA_CONSTEXPR=OFF'
- name: build kokkos-kernels
uses: ./.github/actions/install-repo
with:
repo-name: 'kokkos-kernels-openmpi'
repo-path: 'kokkos/kokkos-kernels'
repo-ref: '4.6.01'
cache: true
options: '-DCMAKE_CXX_STANDARD=17
-DBUILD_SHARED_LIBS=OFF
-DKokkos_DIR=${{ runner.temp }}/build-kokkos-openmpi/install/lib/cmake/Kokkos'
- name: build omega_h
uses: ./.github/actions/install-repo
with:
repo-name: 'omega_h-openmpi'
repo-path: 'SCOREC/omega_h'
repo-ref: '1765836a00b9a64b8b3791f1442ac52f147e43b2'
cache: true
options: '-DCMAKE_CXX_COMPILER=`which mpicxx`
-DCMAKE_C_COMPILER=`which mpicc`
-DBUILD_SHARED_LIBS=OFF
-DOmega_h_USE_MPI=ON
-DOmega_h_USE_Kokkos=ON
-DBUILD_TESTING=OFF
-DMPIEXEC_EXECUTABLE=`which mpirun`
-DKokkos_DIR=${{ runner.temp }}/build-kokkos-openmpi/install/lib/cmake/Kokkos'
- name: build meshFields
uses: ./.github/actions/install-repo
with:
repo-name: 'meshFields-openmpi'
repo-path: 'SCOREC/meshFields'
repo-ref: 'b1482bbba288df210784b2345eae08e34faabdc4'
cache: true
options: '-DCMAKE_CXX_COMPILER=`which mpicxx`
-DCMAKE_C_COMPILER=`which mpicc`
-DMPIEXEC_EXECUTABLE=`which mpirun`
-DKokkos_DIR=${{ runner.temp }}/build-kokkos-openmpi/install/lib/cmake/Kokkos
-DOmega_h_DIR=${{ runner.temp }}/build-omega_h-openmpi/install/lib/cmake/Omega_h'
- name: build perfstubs
uses: ./.github/actions/install-repo
with:
repo-name: 'perfstubs-openmpi'
repo-path: 'UO-OACISS/perfstubs'
repo-ref: 'a1fa3feb1d89214e28047f166500351074b5f0c2'
cache: true
options: '-DCMAKE_CXX_COMPILER=mpicxx'
- name: build kokkos-fortran-interop
uses: ./.github/actions/install-repo
with:
repo-name: 'kokkos-fortran-interop-openmpi'
repo-path: 'kokkos/kokkos-fortran-interop'
repo-ref: 'abae737ce1159c4d7a9165c5629e6f5e6ae91d87'
cache: true
options: '-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CXX_COMPILER=`which mpicxx`
-DCMAKE_C_COMPILER=`which mpicc`
-DCMAKE_Fortran_COMPILER=`which mpifort`
-DBUILD_TESTING=OFF
-DFLCL_BUILD_TESTS=OFF
-DFLCL_BUILD_EXAMPLE=OFF
-DKokkos_DIR=${{ runner.temp }}/build-kokkos-openmpi/install/lib/cmake/Kokkos'
- name: build ADIOS2
uses: ./.github/actions/install-repo
with:
repo-name: 'ADIOS2-openmpi'
repo-path: 'ornladios/ADIOS2'
repo-ref: 'v2.10.2'
cache: true
options: '-DADIOS2_USE_CUDA=OFF'
- name: clone petsc
id: clone-petsc
run: |
cd ${{ runner.temp }}
git clone -b v3.24.2 https://gitlab.com/petsc/petsc.git petsc-openmpi
cd petsc-openmpi
echo "petsc-commit-hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Cache PETSc
id: cache-petsc
uses: actions/cache@v3
with:
path: ${{ runner.temp }}/petsc-openmpi
key: build-petsc-openmpi-${{ steps.clone-petsc.outputs.petsc-commit-hash }}
# PETSc check is removed due to a PETSc test failure using openmpi
- name: build petsc
if: steps.cache-petsc.outputs.cache-hit != 'true'
run: |
cd ${{ runner.temp }}/petsc-openmpi
./configure \
PETSC_ARCH=ubuntu-kokkos \
--with-kokkos-dir="${{ runner.temp }}/build-kokkos-openmpi/install/" \
--with-kokkos-kernels-dir="${{ runner.temp }}/build-kokkos-kernels-openmpi/install/" \
--with-cuda=0 \
--with-shared-libraries=0 \
--download-fblaslapack
make all
- name: build redev
uses: ./.github/actions/install-repo
with:
repo-name: 'redev-openmpi'
repo-path: 'SCOREC/redev'
repo-ref: '1452ec290dc6f8638019e342758325611e16ad77'
cache: true
options: '-DCMAKE_CXX_COMPILER=`which mpicxx`
-DMPIEXEC_EXECUTABLE=`which mpirun`
-DCMAKE_BUILD_TYPE=Release
-DBUILD_SHARED_LIBS=OFF
-DADIOS2_DIR=${{ runner.temp }}/build-ADIOS2-openmpi/install/lib/cmake/adios2
-Dperfstubs_DIR=${{ runner.temp }}/build-perfstubs-openmpi/install/lib/cmake'
- name: checkout pcms_testcases
uses: actions/checkout@v3
with:
repository: jacobmerson/pcms_testcases
path: pcms_testcases
- name: Install fftw3
run: sudo apt-get install -yq libfftw3-dev pkg-config
- name: Install Bear
run: sudo apt-get install -yq bear
- name: configure pcms
run : |
mkdir ${{ runner.temp }}/build-pcms
cmake -S . -B ${{ runner.temp }}/build-pcms -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DCMAKE_C_COMPILER=mpicc \
-DCMAKE_CXX_COMPILER=mpicxx \
-DCMAKE_Fortran_COMPILER=mpifort \
-DPCMS_ENABLE_PETSC=ON \
-DPETSC_DIR=${{ runner.temp }}/petsc-openmpi \
-DPETSC_ARCH=ubuntu-kokkos \
-DPCMS_TIMEOUT=10 \
-DPCMS_ENABLE_SPDLOG=OFF \
-DCatch2_DIR=${{ runner.temp }}/build-Catch2-openmpi/install/lib/cmake/Catch2 \
-DOmega_h_DIR=${{ runner.temp }}/build-omega_h-openmpi/install/lib/cmake/Omega_h \
-Dmeshfields_DIR=${{ runner.temp }}/build-meshFields-openmpi/install/lib/cmake/meshfields \
-Dredev_DIR=${{ runner.temp }}/build-redev-openmpi/install/lib/cmake/redev \
-Dflcl_DIR=${{ runner.temp }}/build-kokkos-fortran-interop-openmpi/install/lib/cmake/flcl \
-DMPIEXEC_EXECUTABLE=mpirun \
-DADIOS2_DIR=${{ runner.temp }}/build-ADIOS2-openmpi/install/lib/cmake/adios2 \
-Dperfstubs_DIR=${{ runner.temp }}/build-perfstubs-openmpi/install/lib/cmake \
-DKokkos_DIR=${{ runner.temp }}/build-kokkos-openmpi/install/lib/cmake/Kokkos \
-DKokkosKernels_DIR=${{ runner.temp }}/build-kokkos-kernels-openmpi/install/lib/cmake/KokkosKernels/ \
-DPCMS_TEST_DATA_DIR=$PWD/pcms_testcases
- name: Configure pcms with Bear
run: |
cd ${{ runner.temp }}/build-pcms
bear -- make
- name: Install clang-tidy
run: |
sudo apt-get update
sudo apt-get install -yq clang-tidy-18
- name: Run clang-tidy
run: |
EXIT_CODE=0
while read file; do
if ! clang-tidy -p ${{ runner.temp }}/build-pcms "$file" --quiet; then
echo "$file has clang-tidy issues"
EXIT_CODE=1
fi
done < <(find src -name "*.cpp" -o -name "*.hpp" -o -name "*.c" -o -name "*.h" -o -name "*.cc" -o -name "*.cxx" | grep -v 'src/pcms/capi/' | grep -v 'src/pcms/fortranapi/')
if [ $EXIT_CODE -eq 1 ]; then
echo "Some C/C++ files have clang-tidy issues. Please fix them with clang-tidy-18."
exit 1
fi
echo "All C/C++ files pass clang-tidy checks"