Skip to content

Commit

Permalink
Turn off clang ci for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Oct 6, 2024
1 parent a5378dc commit 011f42b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [cl, clang++]
compiler: [cl] # turned off clang for now
target: [Debug]
steps:
- uses: actions/checkout@v2
Expand All @@ -117,17 +117,17 @@ jobs:
-DCMAKE_BUILD_TYPE=${{matrix.target}} `
-DLIBASSERT_BUILD_TESTING=On
msbuild .\libassert.sln
- name: build clang
if: ${{ matrix.compiler == 'clang++' }}
run: |
mkdir -p build
cd build
cmake .. `
-DCMAKE_BUILD_TYPE=${{matrix.target}} `
-DCMAKE_CXX_COMPILER="C:\msys64\mingw64\bin\clang++" `
-DCMAKE_C_COMPILER="C:\msys64\mingw64\bin\clang" `
-DLIBASSERT_BUILD_TESTING=On
msbuild .\libassert.sln
# - name: build clang
# if: ${{ matrix.compiler == 'clang++' }}
# run: |
# mkdir -p build
# cd build
# cmake .. `
# -DCMAKE_BUILD_TYPE=${{matrix.target}} `
# -DCMAKE_CXX_COMPILER="C:\msys64\mingw64\bin\clang++" `
# -DCMAKE_C_COMPILER="C:\msys64\mingw64\bin\clang" `
# -DLIBASSERT_BUILD_TESTING=On
# msbuild .\libassert.sln
- name: test
working-directory: build
run: |
Expand Down

0 comments on commit 011f42b

Please sign in to comment.