Skip to content

Commit 73ac2fb

Browse files
authored
Fix breaking DiskStorage library tests (#2939)
Checking partition layouts uses a script with the `blkid` command. the output of which has recently changed to include a `DISKSEQ` field. Discard this before comparison. Also includes commit which improves cache performance. CI runner for Ubuntu 24 has dropped clang 15, so changed script to use the latest available (clang 18).
1 parent 8a2addf commit 73ac2fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
SMING_HOME: ${{ github.workspace }}/Sming
4646
SMING_ARCH: ${{ matrix.arch }}
4747
SMING_SOC: ${{ matrix.variant }}
48-
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '15' || '0' }}
48+
CLANG_BUILD: ${{ matrix.toolchain == 'clang' && '18' || '0' }}
4949
BUILD64: ${{ matrix.toolchain == 'gcc64' && 1 || 0 }}
5050
ENABLE_CCACHE: 1
5151
CCACHE_DIR: ${{ github.workspace }}/.ccache

0 commit comments

Comments
 (0)