Skip to content

Commit

Permalink
Another attempt at fixing additional clang tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sedeniono committed Mar 29, 2024
1 parent bcfb5b2 commit f5939ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test_clang_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
strategy:
fail-fast: false
matrix:
clang_version: [13, 15, 18]
clang_version: [13, 15, 17]
cpp_version: [c++17, c++20]
stdlib: [libc++, libstdc++] # llvm library and gcc library
arch: [m64, m32] # 64 and 32 bit
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]

# For simplicity, exclude 32-Bit builds for manually installed clang versions.
exclude:
- clang_version: 18
- clang_version: 17
cpp_version: m32

runs-on: ubuntu-22.04
Expand All @@ -40,7 +40,6 @@ jobs:
uses: KyleMayes/install-llvm-action@v1.9.0
with:
version: ${{ matrix.clang_version }}
force-version: true

- name: Install libc++ if required
# libc++ is not installed for all clang versions by default.
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_clang_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
clang_version: [16, 18]
clang_version: [16, 17]
cpp_version: [c++17, c++20]
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]

Expand All @@ -30,7 +30,6 @@ jobs:
uses: KyleMayes/install-llvm-action@v1.9.0
with:
version: ${{ matrix.clang_version }}
force-version: true
- name: Build and run tests
working-directory: ${{env.TEST_DIR}}
env:
Expand Down

0 comments on commit f5939ab

Please sign in to comment.