Skip to content

Commit

Permalink
Disable OpenMP for CI strategy with Clang on Ubuntu.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Sep 1, 2024
1 parent 213d6f2 commit 6874a97
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,19 @@ jobs:
openmp: without
openmp-cmake-flags: "-DWITH_OpenMP=OFF"
- compiler: clang
compiler-pkgs: "clang libomp-dev"
compiler-pkgs: "clang"
cc: "clang"
cxx: "clang++"
mpi: with
openmp: with
openmp-cmake-flags: "-DWITH_OpenMP=ON -DOpenMP_C_FLAGS='-fopenmp=libgomp -D_OPENMP=201511' -DOpenMP_CXX_FLAGS='-fopenmp=libgomp -D_OPENMP=201511' -DOpenMP_C_LIB_NAMES='gomp;pthread' -DOpenMP_CXX_LIB_NAMES='gomp;pthread'"
openmp: without
openmp-cmake-flags: "-DWITH_OpenMP=OFF"
# - compiler: clang
# compiler-pkgs: "clang libomp-dev"
# cc: "clang"
# cxx: "clang++"
# mpi: with
# openmp: with
# openmp-cmake-flags: "-DWITH_OpenMP=ON -DOpenMP_C_FLAGS='-fopenmp=libgomp -D_OPENMP=201511' -DOpenMP_CXX_FLAGS='-fopenmp=libgomp -D_OPENMP=201511' -DOpenMP_C_LIB_NAMES='gomp;pthread' -DOpenMP_CXX_LIB_NAMES='gomp;pthread'"

env:
CC: ${{ matrix.cc }}
Expand Down

0 comments on commit 6874a97

Please sign in to comment.