From 78d78faf43d2b1548d4634c0790b86094437602f Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 1 Jun 2025 07:04:42 -0400 Subject: [PATCH 1/3] doc: update release notes Signed-off-by: Anas Nashif --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index 3208a5d1..b08a9cca 100644 --- a/release-notes.md +++ b/release-notes.md @@ -5,7 +5,7 @@ - general: * Added Clang/LLVM 19.1.7 toolchain with Arm and RISC-V architecture support. - * Update to GCC 14.2 + * Update to GCC 14.3 * Picolibc is configured as the main and default C library. * Dropped support for newlib and newlib-nano * Dropped support NIOS II architecture From 1561e106b7ef592ca0ff06000f0b3ca907d6b859 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 1 Jun 2025 07:06:26 -0400 Subject: [PATCH 2/3] tests: add --no-detailed-test-id to twister call Signed-off-by: Anas Nashif --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40374e25..88ff8e4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1849,6 +1849,7 @@ jobs: TWISTER="${ZEPHYR_ROOT}/scripts/twister" ${TWISTER} -v -N --force-color --inline-logs --retry-failed 3 \ --force-toolchain \ + --no-detailed-test-id \ --subset ${{ matrix.subset }}/${{ env.SUBSET_COUNT }} \ ${HOST_ARGS} \ ${TEST_ARGS} \ From e4d2959b4d4a3fe683a13c4272ebac5a5c9fe219 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 1 Jun 2025 07:27:45 -0400 Subject: [PATCH 3/3] ci: twister: retry build errors Retry build errors as well, we get some sporadic build errors on windows/mac that pass if we retry. Signed-off-by: Anas Nashif --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88ff8e4a..3ebf8604 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1848,6 +1848,7 @@ jobs: # Run tests with twister TWISTER="${ZEPHYR_ROOT}/scripts/twister" ${TWISTER} -v -N --force-color --inline-logs --retry-failed 3 \ + --retry-build-errors \ --force-toolchain \ --no-detailed-test-id \ --subset ${{ matrix.subset }}/${{ env.SUBSET_COUNT }} \