Skip to content

Commit 225a364

Browse files
authored
Fix clang version for library CI testing. (#2940)
As identified in #2939, the CI runner for Ubuntu 24 has dropped clang 15. Change script to use the latest available (clang 18).
1 parent 08130a0 commit 225a364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
SMING_ARCH: ${{ matrix.arch }}
6363
SMING_SOC: ${{ matrix.variant }}
6464
INSTALL_IDF_VER: ${{ matrix.idf_version || '5.2' }}
65-
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '15' || '0' }}
65+
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '18' || '0' }}
6666
BUILD64: ${{ matrix.toolchain == 'gcc64' && 1 || 0 }}
6767
ENABLE_CCACHE: 1
6868
CCACHE_DIR: ${{ github.workspace }}/.ccache

0 commit comments

Comments
 (0)