Skip to content

Commit

Permalink
try to update build and test to not cause OMP issues when building wi…
Browse files Browse the repository at this point in the history
…th clang 18
  • Loading branch information
jcoulter12 committed Dec 27, 2024
1 parent 287aeae commit b938ed7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
compiler:
[
#"GCC 10",
"GCC 14",
"Clang 15",
"GCC (Latest)",
"Clang 16",
#"Clang 11",
]
env:
Expand All @@ -34,13 +34,13 @@ jobs:
run: |
CC_VERSION=$( echo "${{ matrix.compiler }}" | awk '{ print $2; }')
echo "CC_VERSION=${CC_VERSION}" >> "$GITHUB_OUTPUT"
- name: Install GCC
- name: Install GCC
if: ${{ startsWith(matrix.compiler, 'GCC') }}
run: sudo apt install -y g++ #-${{ steps.extract_matrix.outputs.CC_VERSION }}
- name: Install Clang
if: ${{ startsWith(matrix.compiler, 'Clang') }}
run: |
sudo apt install -y clang #-${{ steps.extract_matrix.outputs.CC_VERSION }}
sudo apt install -y clang-16 #-${{ steps.extract_matrix.outputs.CC_VERSION }}
sudo apt install -y libomp-dev #${{ steps.extract_matrix.outputs.CC_VERSION }}-dev
- name: Configure
run: |
Expand Down

0 comments on commit b938ed7

Please sign in to comment.