Skip to content

Commit

Permalink
Fix clang version for library CI testing. (#2940)
Browse files Browse the repository at this point in the history
As identified in #2939, the CI runner for Ubuntu 24 has dropped clang 15.
Change script to use the latest available (clang 18).
  • Loading branch information
mikee47 authored Jan 28, 2025
1 parent 08130a0 commit 225a364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
SMING_ARCH: ${{ matrix.arch }}
SMING_SOC: ${{ matrix.variant }}
INSTALL_IDF_VER: ${{ matrix.idf_version || '5.2' }}
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '15' || '0' }}
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '18' || '0' }}
BUILD64: ${{ matrix.toolchain == 'gcc64' && 1 || 0 }}
ENABLE_CCACHE: 1
CCACHE_DIR: ${{ github.workspace }}/.ccache
Expand Down

0 comments on commit 225a364

Please sign in to comment.