Skip to content

5.10 (clang-23)

5.10 (clang-23) #21

Workflow file for this run

# DO NOT MODIFY MANUALLY!
# This file has been autogenerated by invoking:
# $ ./generate_workflow.py 5.10
name: 5.10 (clang-23)
'on':
push:
branches:
- presubmit/*
paths:
- check_logs.py
- utils.py
- tuxsuite/5.10-clang-23.tux.yml
- .github/workflows/5.10-clang-23.yml
schedule:
- cron: 0 9 * * 6
workflow_dispatch: null
permissions: read-all
jobs:
check_patches:
name: Check that patches are applicable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: check-patches-apply.py
run: python3 scripts/check-patches-apply.py --patches-dir patches/5.10 --repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --ref linux-5.10.y
check_cache:
name: Check Cache
runs-on: ubuntu-latest
container: tuxmake/x86_64_clang-nightly
needs: check_patches
env:
GIT_REPO: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
GIT_REF: linux-5.10.y
outputs:
output: ${{ steps.step2.outputs.output }}
status: ${{ steps.step2.outputs.status }}
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- name: python check_cache.py
id: step1
continue-on-error: true
run: caching/check.py -w '${{ github.workflow }}' -g ${{ secrets.REPO_SCOPED_PAT }} -r ${{ env.GIT_REF }} -o ${{ env.GIT_REPO }}
- name: Save exit code to GITHUB_OUTPUT
id: step2
run: echo "output=${{ steps.step1.outcome }}" >> "$GITHUB_OUTPUT" && echo "status=$CACHE_PASS" >> "$GITHUB_OUTPUT"
kick_tuxsuite_defconfigs:
name: TuxSuite (defconfigs)
runs-on: ubuntu-latest
container: tuxsuite/tuxsuite
needs:
- check_cache
- check_patches
env:
TUXSUITE_TOKEN: ${{ secrets.TUXSUITE_TOKEN }}
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
timeout-minutes: 480
steps:
- name: Checking Cache Pass
if: ${{ needs.check_cache.outputs.output == 'success' && github.event_name != 'workflow_dispatch' && needs.check_cache.outputs.status == 'pass' }}
run: echo 'Cache HIT on previously PASSED build. Passing this build to avoid redundant work.' && exit 0
- name: Checking Cache Fail
if: ${{ needs.check_cache.outputs.output == 'success' && github.event_name != 'workflow_dispatch' && needs.check_cache.outputs.status == 'fail' }}
run: echo 'Cache HIT on previously FAILED build. Failing this build to avoid redundant work.' && exit 1
- uses: actions/checkout@v6
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
- uses: astral-sh/setup-uv@v7
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
- name: tuxsuite
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-23.tux.yml || true
- name: Update Cache Build Status
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: caching/update.py
- name: save builds.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v6
with:
path: builds.json
name: output_artifact_defconfigs
if-no-files-found: error
- name: generate boot-utils.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: python3 scripts/generate-boot-utils-json.py ${{ secrets.GITHUB_TOKEN }}
- name: save boot-utils.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v6
with:
path: boot-utils.json
name: boot_utils_json_defconfigs
if-no-files-found: error
_3d95a6fa59b5fb157ffed95225f36e32:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 multi_v5_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 1
CONFIG: multi_v5_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_dc28c5c49403076199d055f3a8a92ff5:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 aspeed_g5_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 1
CONFIG: aspeed_g5_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_e5d41c8409a86b2e4ce9978c17a8dfa8:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 multi_v7_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 1
CONFIG: multi_v7_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_0d6e5cf7927f815d908587e22e70ca7f:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 multi_v7_defconfig+CONFIG_THUMB2_KERNEL=y
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 1
CONFIG: multi_v7_defconfig+CONFIG_THUMB2_KERNEL=y
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_6230737ebcb9b16f7e96abb5e9f3c39a:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm64
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_8f8ad8c3a227344d9d78394a2a7d2302:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 defconfig+CONFIG_CPU_BIG_ENDIAN=y
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm64
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig+CONFIG_CPU_BIG_ENDIAN=y
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_8a64850d84cc39257f996d1d41117591:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=i386 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: i386
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_089f378302e9a53670cb1ffd2dda10b7:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=mips LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 malta_defconfig+CONFIG_BLK_DEV_INITRD=y+CONFIG_CPU_BIG_ENDIAN=y
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: mips
LLVM_VERSION: 23
BOOT: 1
CONFIG: malta_defconfig+CONFIG_BLK_DEV_INITRD=y+CONFIG_CPU_BIG_ENDIAN=y
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_fbac41a5415e7ef8ba348266ff47a185:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=mips LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 malta_defconfig+CONFIG_BLK_DEV_INITRD=y
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: mips
LLVM_VERSION: 23
BOOT: 1
CONFIG: malta_defconfig+CONFIG_BLK_DEV_INITRD=y
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_73e4f1252763ae651221d1c54f0dd9f1:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=powerpc LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 ppc44x_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: powerpc
LLVM_VERSION: 23
BOOT: 1
CONFIG: ppc44x_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_a05574ac1699fde0b23dc51102215ca3:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=powerpc LLVM=1 LD=powerpc64le-linux-gnu-ld LLVM_IAS=0 LLVM_VERSION=23 ppc64_guest_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: powerpc
LLVM_VERSION: 23
BOOT: 1
CONFIG: ppc64_guest_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_9a01e0eb7c7c88433095c060e6b1333e:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=powerpc LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 powernv_defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: powerpc
LLVM_VERSION: 23
BOOT: 1
CONFIG: powernv_defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_edfcde7a1d06346c0bc101a3a549aaf7:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=riscv LLVM=1 LD=riscv64-linux-gnu-ld LLVM_IAS=1 LLVM_VERSION=23 defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: riscv
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_e5155f0e8231574908ff62c0228690a5:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=s390 CC=clang LLVM_IAS=0 LLVM_VERSION=23 defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: s390
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_bf9661e17fce846d55bd26c7bb2b3a00:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_defconfigs
- check_cache
- check_patches
name: ARCH=x86_64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 defconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: x86_64
LLVM_VERSION: 23
BOOT: 1
CONFIG: defconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_defconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_defconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
kick_tuxsuite_allconfigs:
name: TuxSuite (allconfigs)
runs-on: ubuntu-latest
container: tuxsuite/tuxsuite
needs:
- check_cache
- check_patches
env:
TUXSUITE_TOKEN: ${{ secrets.TUXSUITE_TOKEN }}
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
timeout-minutes: 480
steps:
- name: Checking Cache Pass
if: ${{ needs.check_cache.outputs.output == 'success' && github.event_name != 'workflow_dispatch' && needs.check_cache.outputs.status == 'pass' }}
run: echo 'Cache HIT on previously PASSED build. Passing this build to avoid redundant work.' && exit 0
- name: Checking Cache Fail
if: ${{ needs.check_cache.outputs.output == 'success' && github.event_name != 'workflow_dispatch' && needs.check_cache.outputs.status == 'fail' }}
run: echo 'Cache HIT on previously FAILED build. Failing this build to avoid redundant work.' && exit 1
- uses: actions/checkout@v6
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
- uses: astral-sh/setup-uv@v7
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
- name: tuxsuite
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-23.tux.yml || true
- name: Update Cache Build Status
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: caching/update.py
- name: save builds.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v6
with:
path: builds.json
name: output_artifact_allconfigs
if-no-files-found: error
- name: generate boot-utils.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
run: python3 scripts/generate-boot-utils-json.py ${{ secrets.GITHUB_TOKEN }}
- name: save boot-utils.json
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v6
with:
path: boot-utils.json
name: boot_utils_json_allconfigs
if-no-files-found: error
_8c4b02a30513139bcbd494b3f5af9605:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm BOOT=0 LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 allmodconfig+CONFIG_WERROR=n+CONFIG_DRM_WERROR=n
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 0
CONFIG: allmodconfig+CONFIG_WERROR=n+CONFIG_DRM_WERROR=n
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_540be7c2a073aa277f7e4fbaf3e10e06:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allnoconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 0
CONFIG: allnoconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_3474cb00414fe4df215885c8790d3a9f:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm BOOT=0 LLVM=1 LLVM_IAS=0 LLVM_VERSION=23 allyesconfig+CONFIG_WERROR=n+CONFIG_DRM_WERROR=n
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm
LLVM_VERSION: 23
BOOT: 0
CONFIG: allyesconfig+CONFIG_WERROR=n+CONFIG_DRM_WERROR=n
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_6f96d7b69fd211d979870751f2a583be:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allmodconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allmodconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_339160b7ae6d031e701621e8d9a17f7e:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allnoconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allnoconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_ad037a84dda5772231d1762765096086:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=arm64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allyesconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: arm64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allyesconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_c9144ae4174a078b40c7b025e7ae0837:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=x86_64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allmodconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: x86_64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allmodconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_4d85199bd826d77f6441a3a7c4f02647:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=x86_64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allnoconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: x86_64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allnoconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py
_fa27a92638794ab3674f3a6c4c694f86:
runs-on: ubuntu-latest
needs:
- kick_tuxsuite_allconfigs
- check_cache
- check_patches
name: ARCH=x86_64 BOOT=0 LLVM=1 LLVM_IAS=1 LLVM_VERSION=23 allyesconfig
if: ${{ needs.check_cache.outputs.status != 'pass' }}
env:
ARCH: x86_64
LLVM_VERSION: 23
BOOT: 0
CONFIG: allyesconfig
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
container:
image: ghcr.io/clangbuiltlinux/qemu
options: --ipc=host
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/download-artifact@v7
with:
name: output_artifact_allconfigs
- uses: actions/download-artifact@v7
with:
name: boot_utils_json_allconfigs
- uses: astral-sh/setup-uv@v7
- name: Check Build and Boot Logs
run: scripts/check-logs.py