From 9a6ddc78537b3e3389138c94cc0f40591704488c Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Mon, 28 Aug 2023 12:53:16 -0700 Subject: [PATCH 1/2] generator.yml: Stop enabling CONFIG_PPC_DISABLE_WERROR=y for clang-14+ Split up the ppc64 configuration into a "no -Werror" variant so that -Werror can be enabled for clang-14+. -Warray-bounds is only enabled for 5.18+, so we only need this configuration enabled for clang-13 and older on 6.1 and newer. Closes: https://github.com/ClangBuiltLinux/continuous-integration2/issues/617 Signed-off-by: Nathan Chancellor --- generator.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/generator.yml b/generator.yml index 48d8f761..22f3193d 100644 --- a/generator.yml +++ b/generator.yml @@ -311,8 +311,9 @@ configs: - &mips {config: [malta_defconfig, CONFIG_BLK_DEV_INITRD=y, CONFIG_CPU_BIG_ENDIAN=y], kernel_image: vmlinux, ARCH: *mips-arch, << : *kernel} - &mipsel {config: [malta_defconfig, CONFIG_BLK_DEV_INITRD=y], kernel_image: vmlinux, ARCH: *mips-arch, << : *kernel} - &ppc32 {config: ppc44x_defconfig, kernel_image: uImage, ARCH: *powerpc-arch, << : *kernel} - # Disable -Werror for ppc64_guest_defconfig for now: https://github.com/ClangBuiltLinux/linux/issues/1445 - - &ppc64 {config: [ppc64_guest_defconfig, CONFIG_PPC_DISABLE_WERROR=y], kernel_image: vmlinux, ARCH: *powerpc-arch, << : *kernel} + - &ppc64 {config: ppc64_guest_defconfig, kernel_image: vmlinux, ARCH: *powerpc-arch, << : *kernel} + # Disable -Werror for ppc64_guest_defconfig for clang-13 and older: https://github.com/ClangBuiltLinux/linux/issues/1445 + - &ppc64_no_werror {config: [ppc64_guest_defconfig, CONFIG_PPC_DISABLE_WERROR=y], kernel_image: vmlinux, ARCH: *powerpc-arch, << : *kernel} - &ppc64le {config: powernv_defconfig, kernel_image: zImage.epapr, ARCH: *powerpc-arch, << : *kernel} # CONFIG_BPF_PRELOAD disabled for all cross compiled Fedora configs: https://github.com/ClangBuiltLinux/linux/issues/1433 - &ppc64le_fedora {config: [*ppc64le-fedora-config-url, CONFIG_BPF_PRELOAD=n], kernel_image: zImage.epapr, ARCH: *powerpc-arch, << : *kernel} @@ -2683,7 +2684,7 @@ builds: - {<< : *mipsel, << : *mainline, << : *llvm_full, boot: true, << : *llvm_13} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *mainline, << : *llvm, boot: true, << : *llvm_13} - - {<< : *ppc64, << : *mainline, << : *llvm, boot: true, << : *llvm_13} + - {<< : *ppc64_no_werror, << : *mainline, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le, << : *mainline, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le_fedora, << : *mainline, << : *clang, boot: true, << : *llvm_13} - {<< : *ppc64le_suse, << : *mainline, << : *clang, boot: true, << : *llvm_13} @@ -2743,7 +2744,7 @@ builds: - {<< : *mipsel, << : *next, << : *llvm_full, boot: true, << : *llvm_13} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *next, << : *llvm, boot: true, << : *llvm_13} - - {<< : *ppc64, << : *next, << : *llvm, boot: true, << : *llvm_13} + - {<< : *ppc64_no_werror, << : *next, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le, << : *next, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le_fedora, << : *next, << : *clang, boot: true, << : *llvm_13} - {<< : *ppc64le_suse, << : *next, << : *clang, boot: true, << : *llvm_13} @@ -2804,7 +2805,7 @@ builds: - {<< : *mipsel, << : *stable, << : *llvm_full, boot: true, << : *llvm_13} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *stable, << : *llvm, boot: true, << : *llvm_13} - - {<< : *ppc64, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_13} + - {<< : *ppc64_no_werror, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_13} - {<< : *ppc64le, << : *stable, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le_fedora, << : *stable, << : *clang, boot: true, << : *llvm_13} - {<< : *ppc64le_suse, << : *stable, << : *clang, boot: true, << : *llvm_13} @@ -2864,7 +2865,7 @@ builds: - {<< : *mipsel, << : *stable-6_1, << : *llvm_full, boot: true, << : *llvm_13} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_13} - - {<< : *ppc64, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_13} + - {<< : *ppc64_no_werror, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_13} - {<< : *ppc64le, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_13} - {<< : *ppc64le_fedora, << : *stable-6_1, << : *clang, boot: true, << : *llvm_13} - {<< : *ppc64le_suse, << : *stable-6_1, << : *clang, boot: true, << : *llvm_13} @@ -3111,7 +3112,7 @@ builds: - {<< : *mipsel, << : *mainline, << : *llvm_full, boot: true, << : *llvm_12} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *mainline, << : *llvm, boot: true, << : *llvm_12} - - {<< : *ppc64, << : *mainline, << : *llvm, boot: true, << : *llvm_12} + - {<< : *ppc64_no_werror, << : *mainline, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le, << : *mainline, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le_fedora, << : *mainline, << : *clang, boot: true, << : *llvm_12} - {<< : *ppc64le_suse, << : *mainline, << : *clang, boot: true, << : *llvm_12} @@ -3170,7 +3171,7 @@ builds: - {<< : *mipsel, << : *next, << : *llvm_full, boot: true, << : *llvm_12} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *next, << : *llvm, boot: true, << : *llvm_12} - - {<< : *ppc64, << : *next, << : *llvm, boot: true, << : *llvm_12} + - {<< : *ppc64_no_werror, << : *next, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le, << : *next, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le_fedora, << : *next, << : *clang, boot: true, << : *llvm_12} - {<< : *ppc64le_suse, << : *next, << : *clang, boot: true, << : *llvm_12} @@ -3229,7 +3230,7 @@ builds: - {<< : *mipsel, << : *stable, << : *llvm_full, boot: true, << : *llvm_12} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *stable, << : *llvm, boot: true, << : *llvm_12} - - {<< : *ppc64, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_12} + - {<< : *ppc64_no_werror, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_12} - {<< : *ppc64le, << : *stable, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le_fedora, << : *stable, << : *clang, boot: true, << : *llvm_12} - {<< : *ppc64le_suse, << : *stable, << : *clang, boot: true, << : *llvm_12} @@ -3288,7 +3289,7 @@ builds: - {<< : *mipsel, << : *stable-6_1, << : *llvm_full, boot: true, << : *llvm_12} # ppc32: Build disabled (https://github.com/ClangBuiltLinux/linux/issues/1679) # - {<< : *ppc32, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_12} - - {<< : *ppc64, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_12} + - {<< : *ppc64_no_werror, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_12} - {<< : *ppc64le, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_12} - {<< : *ppc64le_fedora, << : *stable-6_1, << : *clang, boot: true, << : *llvm_12} - {<< : *ppc64le_suse, << : *stable-6_1, << : *clang, boot: true, << : *llvm_12} @@ -3496,7 +3497,7 @@ builds: - {<< : *mipsel, << : *mainline, << : *llvm, boot: true, << : *llvm_11} # ppc32 and ppc64: Build disabled (https://gitlab.com/Linaro/tuxmake/-/issues/108) # - {<< : *ppc32, << : *mainline, << : *llvm, boot: true, << : *llvm_11} - # - {<< : *ppc64, << : *mainline, << : *llvm, boot: true, << : *llvm_11} + # - {<< : *ppc64_no_werror, << : *mainline, << : *llvm, boot: true, << : *llvm_11} - {<< : *ppc64le, << : *mainline, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le_fedora, << : *mainline, << : *clang, boot: true, << : *llvm_11} - {<< : *ppc64le_suse, << : *mainline, << : *clang, boot: true, << : *llvm_11} @@ -3555,7 +3556,7 @@ builds: - {<< : *mipsel, << : *next, << : *llvm, boot: true, << : *llvm_11} # ppc32 and ppc64: Build disabled (https://gitlab.com/Linaro/tuxmake/-/issues/108) # - {<< : *ppc32, << : *next, << : *llvm, boot: true, << : *llvm_11} - # - {<< : *ppc64, << : *next, << : *llvm, boot: true, << : *llvm_11} + # - {<< : *ppc64_no_werror, << : *next, << : *llvm, boot: true, << : *llvm_11} - {<< : *ppc64le, << : *next, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le_fedora, << : *next, << : *clang, boot: true, << : *llvm_11} - {<< : *ppc64le_suse, << : *next, << : *clang, boot: true, << : *llvm_11} @@ -3614,7 +3615,7 @@ builds: - {<< : *mipsel, << : *stable, << : *llvm, boot: true, << : *llvm_11} # ppc32 and ppc64: Build disabled (https://gitlab.com/Linaro/tuxmake/-/issues/108) # - {<< : *ppc32, << : *stable, << : *llvm, boot: true, << : *llvm_11} - # - {<< : *ppc64, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_11} + # - {<< : *ppc64_no_werror, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le, << : *stable, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le_fedora, << : *stable, << : *clang, boot: true, << : *llvm_11} - {<< : *ppc64le_suse, << : *stable, << : *clang, boot: true, << : *llvm_11} @@ -3673,7 +3674,7 @@ builds: - {<< : *mipsel, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_11} # ppc32 and ppc64: Build disabled (https://gitlab.com/Linaro/tuxmake/-/issues/108) # - {<< : *ppc32, << : *stable-6_1, << : *llvm, boot: true, << : *llvm_11} - # - {<< : *ppc64, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_11} + # - {<< : *ppc64_no_werror, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le, << : *stable-6_1, << : *ppc64_llvm, boot: true, << : *llvm_11} - {<< : *ppc64le_fedora, << : *stable-6_1, << : *clang, boot: true, << : *llvm_11} - {<< : *ppc64le_suse, << : *stable-6_1, << : *clang, boot: true, << : *llvm_11} From 47bbca7965fbdbda462d0e46f9593fa2d57d33ba Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Mon, 28 Aug 2023 12:55:41 -0700 Subject: [PATCH 2/2] ci: Regenerate GitHub Actions workflow and TuxSuite files Signed-off-by: Nathan Chancellor --- .github/workflows/5.10-clang-12.yml | 6 +++--- .github/workflows/5.10-clang-13.yml | 6 +++--- .github/workflows/5.10-clang-14.yml | 6 +++--- .github/workflows/5.10-clang-15.yml | 6 +++--- .github/workflows/5.10-clang-16.yml | 6 +++--- .github/workflows/5.10-clang-17.yml | 6 +++--- .github/workflows/5.10-clang-18.yml | 6 +++--- .github/workflows/5.15-clang-12.yml | 6 +++--- .github/workflows/5.15-clang-13.yml | 6 +++--- .github/workflows/5.15-clang-14.yml | 6 +++--- .github/workflows/5.15-clang-15.yml | 6 +++--- .github/workflows/5.15-clang-16.yml | 6 +++--- .github/workflows/5.15-clang-17.yml | 6 +++--- .github/workflows/5.15-clang-18.yml | 6 +++--- .github/workflows/5.4-clang-13.yml | 6 +++--- .github/workflows/5.4-clang-14.yml | 6 +++--- .github/workflows/5.4-clang-15.yml | 6 +++--- .github/workflows/5.4-clang-16.yml | 6 +++--- .github/workflows/5.4-clang-17.yml | 6 +++--- .github/workflows/5.4-clang-18.yml | 6 +++--- .github/workflows/6.1-clang-14.yml | 6 +++--- .github/workflows/6.1-clang-15.yml | 6 +++--- .github/workflows/6.1-clang-16.yml | 6 +++--- .github/workflows/6.1-clang-17.yml | 6 +++--- .github/workflows/6.1-clang-18.yml | 6 +++--- .github/workflows/mainline-clang-14.yml | 6 +++--- .github/workflows/mainline-clang-15.yml | 6 +++--- .github/workflows/mainline-clang-16.yml | 6 +++--- .github/workflows/mainline-clang-17.yml | 6 +++--- .github/workflows/mainline-clang-18.yml | 6 +++--- .github/workflows/next-clang-14.yml | 6 +++--- .github/workflows/next-clang-15.yml | 6 +++--- .github/workflows/next-clang-16.yml | 6 +++--- .github/workflows/next-clang-17.yml | 6 +++--- .github/workflows/next-clang-18.yml | 6 +++--- .github/workflows/stable-clang-14.yml | 6 +++--- .github/workflows/stable-clang-15.yml | 6 +++--- .github/workflows/stable-clang-16.yml | 6 +++--- .github/workflows/stable-clang-17.yml | 6 +++--- .github/workflows/stable-clang-18.yml | 6 +++--- tuxsuite/5.10-clang-12.tux.yml | 4 +--- tuxsuite/5.10-clang-13.tux.yml | 4 +--- tuxsuite/5.10-clang-14.tux.yml | 4 +--- tuxsuite/5.10-clang-15.tux.yml | 4 +--- tuxsuite/5.10-clang-16.tux.yml | 4 +--- tuxsuite/5.10-clang-17.tux.yml | 4 +--- tuxsuite/5.10-clang-18.tux.yml | 4 +--- tuxsuite/5.15-clang-12.tux.yml | 4 +--- tuxsuite/5.15-clang-13.tux.yml | 4 +--- tuxsuite/5.15-clang-14.tux.yml | 4 +--- tuxsuite/5.15-clang-15.tux.yml | 4 +--- tuxsuite/5.15-clang-16.tux.yml | 4 +--- tuxsuite/5.15-clang-17.tux.yml | 4 +--- tuxsuite/5.15-clang-18.tux.yml | 4 +--- tuxsuite/5.4-clang-13.tux.yml | 4 +--- tuxsuite/5.4-clang-14.tux.yml | 4 +--- tuxsuite/5.4-clang-15.tux.yml | 4 +--- tuxsuite/5.4-clang-16.tux.yml | 4 +--- tuxsuite/5.4-clang-17.tux.yml | 4 +--- tuxsuite/5.4-clang-18.tux.yml | 4 +--- tuxsuite/6.1-clang-14.tux.yml | 4 +--- tuxsuite/6.1-clang-15.tux.yml | 4 +--- tuxsuite/6.1-clang-16.tux.yml | 4 +--- tuxsuite/6.1-clang-17.tux.yml | 4 +--- tuxsuite/6.1-clang-18.tux.yml | 4 +--- tuxsuite/mainline-clang-14.tux.yml | 4 +--- tuxsuite/mainline-clang-15.tux.yml | 4 +--- tuxsuite/mainline-clang-16.tux.yml | 4 +--- tuxsuite/mainline-clang-17.tux.yml | 4 +--- tuxsuite/mainline-clang-18.tux.yml | 4 +--- tuxsuite/next-clang-14.tux.yml | 4 +--- tuxsuite/next-clang-15.tux.yml | 4 +--- tuxsuite/next-clang-16.tux.yml | 4 +--- tuxsuite/next-clang-17.tux.yml | 4 +--- tuxsuite/next-clang-18.tux.yml | 4 +--- tuxsuite/stable-clang-14.tux.yml | 4 +--- tuxsuite/stable-clang-15.tux.yml | 4 +--- tuxsuite/stable-clang-16.tux.yml | 4 +--- tuxsuite/stable-clang-17.tux.yml | 4 +--- tuxsuite/stable-clang-18.tux.yml | 4 +--- 80 files changed, 160 insertions(+), 240 deletions(-) diff --git a/.github/workflows/5.10-clang-12.yml b/.github/workflows/5.10-clang-12.yml index 8b05b5aa..96ea6e21 100644 --- a/.github/workflows/5.10-clang-12.yml +++ b/.github/workflows/5.10-clang-12.yml @@ -257,15 +257,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b93c483101f871a5ff674333fdf22ffd: + _0d3e8018d7c221aa7df31ad6c41066e3: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=12 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=12 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 12 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-13.yml b/.github/workflows/5.10-clang-13.yml index a0f4f2de..3eb12ef0 100644 --- a/.github/workflows/5.10-clang-13.yml +++ b/.github/workflows/5.10-clang-13.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _fbf6cb49cd3c4d4a4ae82b6aa7149644: + _a8d0c6b961f8ab9a368338791f62e0b6: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 13 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-14.yml b/.github/workflows/5.10-clang-14.yml index 3ea108dc..84b593b8 100644 --- a/.github/workflows/5.10-clang-14.yml +++ b/.github/workflows/5.10-clang-14.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _150e446491c69d10725858f5c0ade242: + _2fe146ce78067661706ce3c941ab2c04: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-15.yml b/.github/workflows/5.10-clang-15.yml index 8bc3b62a..3798f86b 100644 --- a/.github/workflows/5.10-clang-15.yml +++ b/.github/workflows/5.10-clang-15.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b918f74f05e3928e6817ff663df31204: + _6afb266ee9fdf9147dad082968e9acd5: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-16.yml b/.github/workflows/5.10-clang-16.yml index 13e3bc5a..19031ae1 100644 --- a/.github/workflows/5.10-clang-16.yml +++ b/.github/workflows/5.10-clang-16.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _83948c3cdf8b6b582e11113694f2907a: + _f8f67e8d886523e8c09ae03f1e3bb7ab: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-17.yml b/.github/workflows/5.10-clang-17.yml index cd2bb28b..e6d06b8f 100644 --- a/.github/workflows/5.10-clang-17.yml +++ b/.github/workflows/5.10-clang-17.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _af0e5ea88129bb92b30ebaff10922863: + _24a182c0e89aa4b9ca085f97e71efca4: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.10-clang-18.yml b/.github/workflows/5.10-clang-18.yml index 4b18dda7..b983fb74 100644 --- a/.github/workflows/5.10-clang-18.yml +++ b/.github/workflows/5.10-clang-18.yml @@ -281,15 +281,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _5f44d31fce16546466e04512adf3c331: + _d6d581bf38ec6350fafef71559776702: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-12.yml b/.github/workflows/5.15-clang-12.yml index adf551b5..d7aec192 100644 --- a/.github/workflows/5.15-clang-12.yml +++ b/.github/workflows/5.15-clang-12.yml @@ -497,15 +497,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b93c483101f871a5ff674333fdf22ffd: + _0d3e8018d7c221aa7df31ad6c41066e3: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=12 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=12 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 12 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-13.yml b/.github/workflows/5.15-clang-13.yml index 447b44a5..81022c70 100644 --- a/.github/workflows/5.15-clang-13.yml +++ b/.github/workflows/5.15-clang-13.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _fbf6cb49cd3c4d4a4ae82b6aa7149644: + _a8d0c6b961f8ab9a368338791f62e0b6: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 13 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-14.yml b/.github/workflows/5.15-clang-14.yml index 9a9ed496..7dd9f7ac 100644 --- a/.github/workflows/5.15-clang-14.yml +++ b/.github/workflows/5.15-clang-14.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _150e446491c69d10725858f5c0ade242: + _2fe146ce78067661706ce3c941ab2c04: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-15.yml b/.github/workflows/5.15-clang-15.yml index 629ac0b6..e1f4b71f 100644 --- a/.github/workflows/5.15-clang-15.yml +++ b/.github/workflows/5.15-clang-15.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b918f74f05e3928e6817ff663df31204: + _6afb266ee9fdf9147dad082968e9acd5: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-16.yml b/.github/workflows/5.15-clang-16.yml index 48819309..af30ebdc 100644 --- a/.github/workflows/5.15-clang-16.yml +++ b/.github/workflows/5.15-clang-16.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _83948c3cdf8b6b582e11113694f2907a: + _f8f67e8d886523e8c09ae03f1e3bb7ab: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-17.yml b/.github/workflows/5.15-clang-17.yml index 0e88741f..76cf8473 100644 --- a/.github/workflows/5.15-clang-17.yml +++ b/.github/workflows/5.15-clang-17.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _af0e5ea88129bb92b30ebaff10922863: + _24a182c0e89aa4b9ca085f97e71efca4: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.15-clang-18.yml b/.github/workflows/5.15-clang-18.yml index c50d1fb5..b4561614 100644 --- a/.github/workflows/5.15-clang-18.yml +++ b/.github/workflows/5.15-clang-18.yml @@ -521,15 +521,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _5f44d31fce16546466e04512adf3c331: + _d6d581bf38ec6350fafef71559776702: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-13.yml b/.github/workflows/5.4-clang-13.yml index 13704494..fc1f23a4 100644 --- a/.github/workflows/5.4-clang-13.yml +++ b/.github/workflows/5.4-clang-13.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _fbf6cb49cd3c4d4a4ae82b6aa7149644: + _a8d0c6b961f8ab9a368338791f62e0b6: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=13 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 13 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-14.yml b/.github/workflows/5.4-clang-14.yml index 975c1bcc..4b3fedaf 100644 --- a/.github/workflows/5.4-clang-14.yml +++ b/.github/workflows/5.4-clang-14.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _150e446491c69d10725858f5c0ade242: + _2fe146ce78067661706ce3c941ab2c04: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-15.yml b/.github/workflows/5.4-clang-15.yml index 6d1ab473..a842f837 100644 --- a/.github/workflows/5.4-clang-15.yml +++ b/.github/workflows/5.4-clang-15.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b918f74f05e3928e6817ff663df31204: + _6afb266ee9fdf9147dad082968e9acd5: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-16.yml b/.github/workflows/5.4-clang-16.yml index 7989a426..8ec2c232 100644 --- a/.github/workflows/5.4-clang-16.yml +++ b/.github/workflows/5.4-clang-16.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _83948c3cdf8b6b582e11113694f2907a: + _f8f67e8d886523e8c09ae03f1e3bb7ab: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-17.yml b/.github/workflows/5.4-clang-17.yml index 820e316f..030d4194 100644 --- a/.github/workflows/5.4-clang-17.yml +++ b/.github/workflows/5.4-clang-17.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _af0e5ea88129bb92b30ebaff10922863: + _24a182c0e89aa4b9ca085f97e71efca4: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/5.4-clang-18.yml b/.github/workflows/5.4-clang-18.yml index e95ce441..1084f90d 100644 --- a/.github/workflows/5.4-clang-18.yml +++ b/.github/workflows/5.4-clang-18.yml @@ -209,15 +209,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _5f44d31fce16546466e04512adf3c331: + _d6d581bf38ec6350fafef71559776702: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/6.1-clang-14.yml b/.github/workflows/6.1-clang-14.yml index 22c55613..a44d8c9c 100644 --- a/.github/workflows/6.1-clang-14.yml +++ b/.github/workflows/6.1-clang-14.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _150e446491c69d10725858f5c0ade242: + _2fe146ce78067661706ce3c941ab2c04: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/6.1-clang-15.yml b/.github/workflows/6.1-clang-15.yml index 63496b65..dc8b974c 100644 --- a/.github/workflows/6.1-clang-15.yml +++ b/.github/workflows/6.1-clang-15.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b918f74f05e3928e6817ff663df31204: + _6afb266ee9fdf9147dad082968e9acd5: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/6.1-clang-16.yml b/.github/workflows/6.1-clang-16.yml index 7c85ef29..33ca0ab3 100644 --- a/.github/workflows/6.1-clang-16.yml +++ b/.github/workflows/6.1-clang-16.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _83948c3cdf8b6b582e11113694f2907a: + _f8f67e8d886523e8c09ae03f1e3bb7ab: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/6.1-clang-17.yml b/.github/workflows/6.1-clang-17.yml index 19e57808..b82af87d 100644 --- a/.github/workflows/6.1-clang-17.yml +++ b/.github/workflows/6.1-clang-17.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _af0e5ea88129bb92b30ebaff10922863: + _24a182c0e89aa4b9ca085f97e71efca4: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/6.1-clang-18.yml b/.github/workflows/6.1-clang-18.yml index 753a27c5..16daaa1f 100644 --- a/.github/workflows/6.1-clang-18.yml +++ b/.github/workflows/6.1-clang-18.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _5f44d31fce16546466e04512adf3c331: + _d6d581bf38ec6350fafef71559776702: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/mainline-clang-14.yml b/.github/workflows/mainline-clang-14.yml index 3ad4298d..0ccdd910 100644 --- a/.github/workflows/mainline-clang-14.yml +++ b/.github/workflows/mainline-clang-14.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _1e5541ce7961d05a1e3bde22d9f4c015: + _9c7f800a9125039c676aaf7380fa47eb: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/mainline-clang-15.yml b/.github/workflows/mainline-clang-15.yml index 919b21aa..c5f996a9 100644 --- a/.github/workflows/mainline-clang-15.yml +++ b/.github/workflows/mainline-clang-15.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _59f977e37d712618352b665340bb25ce: + _c01f91b0300887260fb7a31261c5a7d8: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/mainline-clang-16.yml b/.github/workflows/mainline-clang-16.yml index cb26d565..2d76b190 100644 --- a/.github/workflows/mainline-clang-16.yml +++ b/.github/workflows/mainline-clang-16.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _0734e1f3e14c5d0828be61dd34046d9a: + _7ddd279bf4ada4235a9fe7b998cc544b: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/mainline-clang-17.yml b/.github/workflows/mainline-clang-17.yml index ede52347..d4f7130d 100644 --- a/.github/workflows/mainline-clang-17.yml +++ b/.github/workflows/mainline-clang-17.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _f8e4d913daecadf7ef9f7232dd865ed7: + _0ff49e5a122fcde5a6d1d80a0ddf8805: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/mainline-clang-18.yml b/.github/workflows/mainline-clang-18.yml index 437eaf12..19abe767 100644 --- a/.github/workflows/mainline-clang-18.yml +++ b/.github/workflows/mainline-clang-18.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b5c6e32d6cac8167a9ef84c8c04b853d: + _4cc31eab7a6658d3ab878aac18ffa368: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/next-clang-14.yml b/.github/workflows/next-clang-14.yml index c4c189c5..640a3c1f 100644 --- a/.github/workflows/next-clang-14.yml +++ b/.github/workflows/next-clang-14.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _1e5541ce7961d05a1e3bde22d9f4c015: + _9c7f800a9125039c676aaf7380fa47eb: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/next-clang-15.yml b/.github/workflows/next-clang-15.yml index 53a0709e..9fb2e2bd 100644 --- a/.github/workflows/next-clang-15.yml +++ b/.github/workflows/next-clang-15.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _59f977e37d712618352b665340bb25ce: + _c01f91b0300887260fb7a31261c5a7d8: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/next-clang-16.yml b/.github/workflows/next-clang-16.yml index 4b95add9..29441188 100644 --- a/.github/workflows/next-clang-16.yml +++ b/.github/workflows/next-clang-16.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _0734e1f3e14c5d0828be61dd34046d9a: + _7ddd279bf4ada4235a9fe7b998cc544b: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/next-clang-17.yml b/.github/workflows/next-clang-17.yml index b8e33c0c..58f5b97f 100644 --- a/.github/workflows/next-clang-17.yml +++ b/.github/workflows/next-clang-17.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _f8e4d913daecadf7ef9f7232dd865ed7: + _0ff49e5a122fcde5a6d1d80a0ddf8805: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/next-clang-18.yml b/.github/workflows/next-clang-18.yml index cb9d80f5..b422cd2f 100644 --- a/.github/workflows/next-clang-18.yml +++ b/.github/workflows/next-clang-18.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b5c6e32d6cac8167a9ef84c8c04b853d: + _4cc31eab7a6658d3ab878aac18ffa368: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LLVM_IAS=1 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/stable-clang-14.yml b/.github/workflows/stable-clang-14.yml index 5275f0d3..cbb44ce5 100644 --- a/.github/workflows/stable-clang-14.yml +++ b/.github/workflows/stable-clang-14.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _150e446491c69d10725858f5c0ade242: + _2fe146ce78067661706ce3c941ab2c04: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=14 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 14 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/stable-clang-15.yml b/.github/workflows/stable-clang-15.yml index dc140cbd..e4d9345a 100644 --- a/.github/workflows/stable-clang-15.yml +++ b/.github/workflows/stable-clang-15.yml @@ -473,15 +473,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _b918f74f05e3928e6817ff663df31204: + _6afb266ee9fdf9147dad082968e9acd5: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=15 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 15 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/stable-clang-16.yml b/.github/workflows/stable-clang-16.yml index 3a846412..115da6b0 100644 --- a/.github/workflows/stable-clang-16.yml +++ b/.github/workflows/stable-clang-16.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _83948c3cdf8b6b582e11113694f2907a: + _f8f67e8d886523e8c09ae03f1e3bb7ab: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=16 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 16 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/stable-clang-17.yml b/.github/workflows/stable-clang-17.yml index 3df91c51..1810be01 100644 --- a/.github/workflows/stable-clang-17.yml +++ b/.github/workflows/stable-clang-17.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _af0e5ea88129bb92b30ebaff10922863: + _24a182c0e89aa4b9ca085f97e71efca4: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=17 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 17 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/.github/workflows/stable-clang-18.yml b/.github/workflows/stable-clang-18.yml index 8add93ec..67ecece2 100644 --- a/.github/workflows/stable-clang-18.yml +++ b/.github/workflows/stable-clang-18.yml @@ -545,15 +545,15 @@ jobs: name: boot_utils_json_defconfigs - name: Check Build and Boot Logs run: ./check_logs.py - _5f44d31fce16546466e04512adf3c331: + _d6d581bf38ec6350fafef71559776702: runs-on: ubuntu-latest needs: kick_tuxsuite_defconfigs - name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=18 ppc64_guest_defconfig env: ARCH: powerpc LLVM_VERSION: 18 BOOT: 1 - CONFIG: ppc64_guest_defconfig+CONFIG_PPC_DISABLE_WERROR=y + CONFIG: ppc64_guest_defconfig container: image: ghcr.io/clangbuiltlinux/qemu options: --ipc=host diff --git a/tuxsuite/5.10-clang-12.tux.yml b/tuxsuite/5.10-clang-12.tux.yml index 3b9c9216..cd4bb9b1 100644 --- a/tuxsuite/5.10-clang-12.tux.yml +++ b/tuxsuite/5.10-clang-12.tux.yml @@ -99,9 +99,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-12 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-13.tux.yml b/tuxsuite/5.10-clang-13.tux.yml index 3ba0f2c9..2d47d5b6 100644 --- a/tuxsuite/5.10-clang-13.tux.yml +++ b/tuxsuite/5.10-clang-13.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-13 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-14.tux.yml b/tuxsuite/5.10-clang-14.tux.yml index d8376e5f..01d37958 100644 --- a/tuxsuite/5.10-clang-14.tux.yml +++ b/tuxsuite/5.10-clang-14.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-15.tux.yml b/tuxsuite/5.10-clang-15.tux.yml index 2bc27c22..ff8d34dc 100644 --- a/tuxsuite/5.10-clang-15.tux.yml +++ b/tuxsuite/5.10-clang-15.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-16.tux.yml b/tuxsuite/5.10-clang-16.tux.yml index 4ab096bf..6a081123 100644 --- a/tuxsuite/5.10-clang-16.tux.yml +++ b/tuxsuite/5.10-clang-16.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-17.tux.yml b/tuxsuite/5.10-clang-17.tux.yml index b5a53876..02cdaa46 100644 --- a/tuxsuite/5.10-clang-17.tux.yml +++ b/tuxsuite/5.10-clang-17.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.10-clang-18.tux.yml b/tuxsuite/5.10-clang-18.tux.yml index ec6949e5..37a55a1e 100644 --- a/tuxsuite/5.10-clang-18.tux.yml +++ b/tuxsuite/5.10-clang-18.tux.yml @@ -108,9 +108,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-12.tux.yml b/tuxsuite/5.15-clang-12.tux.yml index 59521e1f..496d3fce 100644 --- a/tuxsuite/5.15-clang-12.tux.yml +++ b/tuxsuite/5.15-clang-12.tux.yml @@ -204,9 +204,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-12 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-13.tux.yml b/tuxsuite/5.15-clang-13.tux.yml index 10edc44a..7bc393bc 100644 --- a/tuxsuite/5.15-clang-13.tux.yml +++ b/tuxsuite/5.15-clang-13.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-13 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-14.tux.yml b/tuxsuite/5.15-clang-14.tux.yml index 525e9c30..04146485 100644 --- a/tuxsuite/5.15-clang-14.tux.yml +++ b/tuxsuite/5.15-clang-14.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-15.tux.yml b/tuxsuite/5.15-clang-15.tux.yml index 24816c43..c3935954 100644 --- a/tuxsuite/5.15-clang-15.tux.yml +++ b/tuxsuite/5.15-clang-15.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-16.tux.yml b/tuxsuite/5.15-clang-16.tux.yml index cbf62a9d..e5d451bf 100644 --- a/tuxsuite/5.15-clang-16.tux.yml +++ b/tuxsuite/5.15-clang-16.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-17.tux.yml b/tuxsuite/5.15-clang-17.tux.yml index eba0dfbf..bab91df2 100644 --- a/tuxsuite/5.15-clang-17.tux.yml +++ b/tuxsuite/5.15-clang-17.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.15-clang-18.tux.yml b/tuxsuite/5.15-clang-18.tux.yml index 5a503692..8352be34 100644 --- a/tuxsuite/5.15-clang-18.tux.yml +++ b/tuxsuite/5.15-clang-18.tux.yml @@ -213,9 +213,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-13.tux.yml b/tuxsuite/5.4-clang-13.tux.yml index a2103382..717e0f6d 100644 --- a/tuxsuite/5.4-clang-13.tux.yml +++ b/tuxsuite/5.4-clang-13.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-13 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-14.tux.yml b/tuxsuite/5.4-clang-14.tux.yml index 71c7609f..768d3a9f 100644 --- a/tuxsuite/5.4-clang-14.tux.yml +++ b/tuxsuite/5.4-clang-14.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-15.tux.yml b/tuxsuite/5.4-clang-15.tux.yml index ac312378..a075f3a4 100644 --- a/tuxsuite/5.4-clang-15.tux.yml +++ b/tuxsuite/5.4-clang-15.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-16.tux.yml b/tuxsuite/5.4-clang-16.tux.yml index 875cba2a..71beec2a 100644 --- a/tuxsuite/5.4-clang-16.tux.yml +++ b/tuxsuite/5.4-clang-16.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-17.tux.yml b/tuxsuite/5.4-clang-17.tux.yml index 2a2d853d..b9637528 100644 --- a/tuxsuite/5.4-clang-17.tux.yml +++ b/tuxsuite/5.4-clang-17.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/5.4-clang-18.tux.yml b/tuxsuite/5.4-clang-18.tux.yml index a2afc4c3..9713720f 100644 --- a/tuxsuite/5.4-clang-18.tux.yml +++ b/tuxsuite/5.4-clang-18.tux.yml @@ -84,9 +84,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/6.1-clang-14.tux.yml b/tuxsuite/6.1-clang-14.tux.yml index 1e100a66..d5ee561d 100644 --- a/tuxsuite/6.1-clang-14.tux.yml +++ b/tuxsuite/6.1-clang-14.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/6.1-clang-15.tux.yml b/tuxsuite/6.1-clang-15.tux.yml index 6220f9ac..3cffc8ec 100644 --- a/tuxsuite/6.1-clang-15.tux.yml +++ b/tuxsuite/6.1-clang-15.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/6.1-clang-16.tux.yml b/tuxsuite/6.1-clang-16.tux.yml index dacf8233..01b8dd98 100644 --- a/tuxsuite/6.1-clang-16.tux.yml +++ b/tuxsuite/6.1-clang-16.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/6.1-clang-17.tux.yml b/tuxsuite/6.1-clang-17.tux.yml index 32621e5e..85758c7a 100644 --- a/tuxsuite/6.1-clang-17.tux.yml +++ b/tuxsuite/6.1-clang-17.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/6.1-clang-18.tux.yml b/tuxsuite/6.1-clang-18.tux.yml index e5a73603..071448c2 100644 --- a/tuxsuite/6.1-clang-18.tux.yml +++ b/tuxsuite/6.1-clang-18.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/mainline-clang-14.tux.yml b/tuxsuite/mainline-clang-14.tux.yml index d3e07c29..164b56a0 100644 --- a/tuxsuite/mainline-clang-14.tux.yml +++ b/tuxsuite/mainline-clang-14.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/mainline-clang-15.tux.yml b/tuxsuite/mainline-clang-15.tux.yml index fd0e6ec6..75a90012 100644 --- a/tuxsuite/mainline-clang-15.tux.yml +++ b/tuxsuite/mainline-clang-15.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/mainline-clang-16.tux.yml b/tuxsuite/mainline-clang-16.tux.yml index dbe87c19..23eb8845 100644 --- a/tuxsuite/mainline-clang-16.tux.yml +++ b/tuxsuite/mainline-clang-16.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/mainline-clang-17.tux.yml b/tuxsuite/mainline-clang-17.tux.yml index 8dc1d5a9..bb45d406 100644 --- a/tuxsuite/mainline-clang-17.tux.yml +++ b/tuxsuite/mainline-clang-17.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/mainline-clang-18.tux.yml b/tuxsuite/mainline-clang-18.tux.yml index cf55d75f..341cde02 100644 --- a/tuxsuite/mainline-clang-18.tux.yml +++ b/tuxsuite/mainline-clang-18.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/next-clang-14.tux.yml b/tuxsuite/next-clang-14.tux.yml index 355a3eeb..d86d9372 100644 --- a/tuxsuite/next-clang-14.tux.yml +++ b/tuxsuite/next-clang-14.tux.yml @@ -192,9 +192,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/next-clang-15.tux.yml b/tuxsuite/next-clang-15.tux.yml index f74392ea..944f4e0d 100644 --- a/tuxsuite/next-clang-15.tux.yml +++ b/tuxsuite/next-clang-15.tux.yml @@ -192,9 +192,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/next-clang-16.tux.yml b/tuxsuite/next-clang-16.tux.yml index 22babbb8..790b9206 100644 --- a/tuxsuite/next-clang-16.tux.yml +++ b/tuxsuite/next-clang-16.tux.yml @@ -222,9 +222,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/next-clang-17.tux.yml b/tuxsuite/next-clang-17.tux.yml index 517d3d98..df411d87 100644 --- a/tuxsuite/next-clang-17.tux.yml +++ b/tuxsuite/next-clang-17.tux.yml @@ -222,9 +222,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/next-clang-18.tux.yml b/tuxsuite/next-clang-18.tux.yml index 7f724f8f..8395e35e 100644 --- a/tuxsuite/next-clang-18.tux.yml +++ b/tuxsuite/next-clang-18.tux.yml @@ -222,9 +222,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/stable-clang-14.tux.yml b/tuxsuite/stable-clang-14.tux.yml index 960d425a..3feb29a8 100644 --- a/tuxsuite/stable-clang-14.tux.yml +++ b/tuxsuite/stable-clang-14.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-14 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/stable-clang-15.tux.yml b/tuxsuite/stable-clang-15.tux.yml index 1afd5185..f1583824 100644 --- a/tuxsuite/stable-clang-15.tux.yml +++ b/tuxsuite/stable-clang-15.tux.yml @@ -193,9 +193,7 @@ jobs: LLVM_IAS: 1 - target_arch: powerpc toolchain: clang-15 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/stable-clang-16.tux.yml b/tuxsuite/stable-clang-16.tux.yml index 0c7e3dd5..d80af3e7 100644 --- a/tuxsuite/stable-clang-16.tux.yml +++ b/tuxsuite/stable-clang-16.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-16 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/stable-clang-17.tux.yml b/tuxsuite/stable-clang-17.tux.yml index abee99fe..41b4fb8b 100644 --- a/tuxsuite/stable-clang-17.tux.yml +++ b/tuxsuite/stable-clang-17.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-17 - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux diff --git a/tuxsuite/stable-clang-18.tux.yml b/tuxsuite/stable-clang-18.tux.yml index 3c1437b8..c2765b5b 100644 --- a/tuxsuite/stable-clang-18.tux.yml +++ b/tuxsuite/stable-clang-18.tux.yml @@ -223,9 +223,7 @@ jobs: LLVM_IAS: 0 - target_arch: powerpc toolchain: clang-nightly - kconfig: - - ppc64_guest_defconfig - - CONFIG_PPC_DISABLE_WERROR=y + kconfig: ppc64_guest_defconfig targets: - kernel kernel_image: vmlinux