From 0dbbff4c705f96dbfcbae80f58635676eb601d3e Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Thu, 19 Jun 2025 13:36:35 -0700 Subject: [PATCH 1/2] patches: Drop SCSI QEDF patch from several trees It was merged into android-mainline with [1] and was released in 6.15.3, 6.12.34, and 6.6.94. Link: https://android.googlesource.com/kernel/common/+/405122589ec9edbf3c06cd082f081d3c50fae909 [1] Signed-off-by: Nathan Chancellor --- ...0235d5b5cad86c1f07f65117ef2a96f8bec7.patch | 40 ------------------- patches/6.12/series | 1 - ...0235d5b5cad86c1f07f65117ef2a96f8bec7.patch | 40 ------------------- patches/6.6/series | 1 - ...0235d5b5cad86c1f07f65117ef2a96f8bec7.patch | 40 ------------------- patches/android-mainline/series | 1 - ...0235d5b5cad86c1f07f65117ef2a96f8bec7.patch | 40 ------------------- patches/stable/series | 1 - 8 files changed, 164 deletions(-) delete mode 100644 patches/6.12/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch delete mode 100644 patches/6.12/series delete mode 100644 patches/6.6/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch delete mode 100644 patches/android-mainline/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch delete mode 100644 patches/android-mainline/series delete mode 100644 patches/stable/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch diff --git a/patches/6.12/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch b/patches/6.12/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch deleted file mode 100644 index 0a053c7d..00000000 --- a/patches/6.12/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch +++ /dev/null @@ -1,40 +0,0 @@ -From d8720235d5b5cad86c1f07f65117ef2a96f8bec7 Mon Sep 17 00:00:00 2001 -From: Kees Cook -Date: Fri, 2 May 2025 15:41:57 -0700 -Subject: scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops - -Recent fixes to the randstruct GCC plugin allowed it to notice -that this structure is entirely function pointers and is therefore -subject to randomization, but doing so requires that it always use -designated initializers. Explicitly specify the "common" member as being -initialized. Silences: - -drivers/scsi/qedf/qedf_main.c:702:9: error: positional initialization of field in 'struct' declared with 'designated_init' attribute [-Werror=designated-init] - 702 | { - | ^ - -Fixes: 035f7f87b729 ("randstruct: Enable Clang support") -Link: https://lore.kernel.org/r/20250502224156.work.617-kees@kernel.org -Signed-off-by: Kees Cook ---- -Link: https://git.kernel.org/kees/c/d8720235d5b5cad86c1f07f65117ef2a96f8bec7 ---- - drivers/scsi/qedf/qedf_main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c -index 436bd29d5ebae6..6b1ebab36fa35b 100644 ---- a/drivers/scsi/qedf/qedf_main.c -+++ b/drivers/scsi/qedf/qedf_main.c -@@ -699,7 +699,7 @@ static u32 qedf_get_login_failures(void *cookie) - } - - static struct qed_fcoe_cb_ops qedf_cb_ops = { -- { -+ .common = { - .link_update = qedf_link_update, - .bw_update = qedf_bw_update, - .schedule_recovery_handler = qedf_schedule_recovery_handler, --- -cgit 1.2.3-korg - diff --git a/patches/6.12/series b/patches/6.12/series deleted file mode 100644 index b281291d..00000000 --- a/patches/6.12/series +++ /dev/null @@ -1 +0,0 @@ -d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch diff --git a/patches/6.6/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch b/patches/6.6/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch deleted file mode 100644 index 0a053c7d..00000000 --- a/patches/6.6/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch +++ /dev/null @@ -1,40 +0,0 @@ -From d8720235d5b5cad86c1f07f65117ef2a96f8bec7 Mon Sep 17 00:00:00 2001 -From: Kees Cook -Date: Fri, 2 May 2025 15:41:57 -0700 -Subject: scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops - -Recent fixes to the randstruct GCC plugin allowed it to notice -that this structure is entirely function pointers and is therefore -subject to randomization, but doing so requires that it always use -designated initializers. Explicitly specify the "common" member as being -initialized. Silences: - -drivers/scsi/qedf/qedf_main.c:702:9: error: positional initialization of field in 'struct' declared with 'designated_init' attribute [-Werror=designated-init] - 702 | { - | ^ - -Fixes: 035f7f87b729 ("randstruct: Enable Clang support") -Link: https://lore.kernel.org/r/20250502224156.work.617-kees@kernel.org -Signed-off-by: Kees Cook ---- -Link: https://git.kernel.org/kees/c/d8720235d5b5cad86c1f07f65117ef2a96f8bec7 ---- - drivers/scsi/qedf/qedf_main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c -index 436bd29d5ebae6..6b1ebab36fa35b 100644 ---- a/drivers/scsi/qedf/qedf_main.c -+++ b/drivers/scsi/qedf/qedf_main.c -@@ -699,7 +699,7 @@ static u32 qedf_get_login_failures(void *cookie) - } - - static struct qed_fcoe_cb_ops qedf_cb_ops = { -- { -+ .common = { - .link_update = qedf_link_update, - .bw_update = qedf_bw_update, - .schedule_recovery_handler = qedf_schedule_recovery_handler, --- -cgit 1.2.3-korg - diff --git a/patches/6.6/series b/patches/6.6/series index 1b705ac9..863c43ed 100644 --- a/patches/6.6/series +++ b/patches/6.6/series @@ -1,2 +1 @@ d0afcfeb9e3810ec89d1ffde1a0e36621bb75dca.patch -d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch diff --git a/patches/android-mainline/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch b/patches/android-mainline/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch deleted file mode 100644 index 0a053c7d..00000000 --- a/patches/android-mainline/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch +++ /dev/null @@ -1,40 +0,0 @@ -From d8720235d5b5cad86c1f07f65117ef2a96f8bec7 Mon Sep 17 00:00:00 2001 -From: Kees Cook -Date: Fri, 2 May 2025 15:41:57 -0700 -Subject: scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops - -Recent fixes to the randstruct GCC plugin allowed it to notice -that this structure is entirely function pointers and is therefore -subject to randomization, but doing so requires that it always use -designated initializers. Explicitly specify the "common" member as being -initialized. Silences: - -drivers/scsi/qedf/qedf_main.c:702:9: error: positional initialization of field in 'struct' declared with 'designated_init' attribute [-Werror=designated-init] - 702 | { - | ^ - -Fixes: 035f7f87b729 ("randstruct: Enable Clang support") -Link: https://lore.kernel.org/r/20250502224156.work.617-kees@kernel.org -Signed-off-by: Kees Cook ---- -Link: https://git.kernel.org/kees/c/d8720235d5b5cad86c1f07f65117ef2a96f8bec7 ---- - drivers/scsi/qedf/qedf_main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c -index 436bd29d5ebae6..6b1ebab36fa35b 100644 ---- a/drivers/scsi/qedf/qedf_main.c -+++ b/drivers/scsi/qedf/qedf_main.c -@@ -699,7 +699,7 @@ static u32 qedf_get_login_failures(void *cookie) - } - - static struct qed_fcoe_cb_ops qedf_cb_ops = { -- { -+ .common = { - .link_update = qedf_link_update, - .bw_update = qedf_bw_update, - .schedule_recovery_handler = qedf_schedule_recovery_handler, --- -cgit 1.2.3-korg - diff --git a/patches/android-mainline/series b/patches/android-mainline/series deleted file mode 100644 index b281291d..00000000 --- a/patches/android-mainline/series +++ /dev/null @@ -1 +0,0 @@ -d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch diff --git a/patches/stable/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch b/patches/stable/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch deleted file mode 100644 index 0a053c7d..00000000 --- a/patches/stable/d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch +++ /dev/null @@ -1,40 +0,0 @@ -From d8720235d5b5cad86c1f07f65117ef2a96f8bec7 Mon Sep 17 00:00:00 2001 -From: Kees Cook -Date: Fri, 2 May 2025 15:41:57 -0700 -Subject: scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops - -Recent fixes to the randstruct GCC plugin allowed it to notice -that this structure is entirely function pointers and is therefore -subject to randomization, but doing so requires that it always use -designated initializers. Explicitly specify the "common" member as being -initialized. Silences: - -drivers/scsi/qedf/qedf_main.c:702:9: error: positional initialization of field in 'struct' declared with 'designated_init' attribute [-Werror=designated-init] - 702 | { - | ^ - -Fixes: 035f7f87b729 ("randstruct: Enable Clang support") -Link: https://lore.kernel.org/r/20250502224156.work.617-kees@kernel.org -Signed-off-by: Kees Cook ---- -Link: https://git.kernel.org/kees/c/d8720235d5b5cad86c1f07f65117ef2a96f8bec7 ---- - drivers/scsi/qedf/qedf_main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c -index 436bd29d5ebae6..6b1ebab36fa35b 100644 ---- a/drivers/scsi/qedf/qedf_main.c -+++ b/drivers/scsi/qedf/qedf_main.c -@@ -699,7 +699,7 @@ static u32 qedf_get_login_failures(void *cookie) - } - - static struct qed_fcoe_cb_ops qedf_cb_ops = { -- { -+ .common = { - .link_update = qedf_link_update, - .bw_update = qedf_bw_update, - .schedule_recovery_handler = qedf_schedule_recovery_handler, --- -cgit 1.2.3-korg - diff --git a/patches/stable/series b/patches/stable/series index 7277e3fe..eb573cf9 100644 --- a/patches/stable/series +++ b/patches/stable/series @@ -1,2 +1 @@ 368556dd234dc4a506a35a0c99c0eee2ab475c77.patch -d8720235d5b5cad86c1f07f65117ef2a96f8bec7.patch From bcc3c43af348f735ae973b15e7ac4c0626160b56 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Thu, 19 Jun 2025 13:43:53 -0700 Subject: [PATCH 2/2] ci: Regenerate GitHub Actions workflow and TuxSuite files Signed-off-by: Nathan Chancellor --- .github/workflows/6.12-clang-13.yml | 6 +++--- .github/workflows/6.12-clang-14.yml | 6 +++--- .github/workflows/6.12-clang-15.yml | 6 +++--- .github/workflows/6.12-clang-16.yml | 6 +++--- .github/workflows/6.12-clang-17.yml | 6 +++--- .github/workflows/6.12-clang-18.yml | 6 +++--- .github/workflows/6.12-clang-19.yml | 6 +++--- .github/workflows/6.12-clang-20.yml | 6 +++--- .github/workflows/6.12-clang-21.yml | 6 +++--- .github/workflows/android-mainline-clang-19.yml | 4 ++-- .github/workflows/android-mainline-clang-20.yml | 4 ++-- .github/workflows/android-mainline-clang-21.yml | 4 ++-- tuxsuite/6.12-clang-13.tux.yml | 3 +-- tuxsuite/6.12-clang-14.tux.yml | 3 +-- tuxsuite/6.12-clang-15.tux.yml | 3 +-- tuxsuite/6.12-clang-16.tux.yml | 3 +-- tuxsuite/6.12-clang-17.tux.yml | 3 +-- tuxsuite/6.12-clang-18.tux.yml | 3 +-- tuxsuite/6.12-clang-19.tux.yml | 3 +-- tuxsuite/6.12-clang-20.tux.yml | 3 +-- tuxsuite/6.12-clang-21.tux.yml | 3 +-- tuxsuite/android-mainline-clang-19.tux.yml | 3 +-- tuxsuite/android-mainline-clang-20.tux.yml | 3 +-- tuxsuite/android-mainline-clang-21.tux.yml | 3 +-- 24 files changed, 45 insertions(+), 57 deletions(-) diff --git a/.github/workflows/6.12-clang-13.yml b/.github/workflows/6.12-clang-13.yml index 7c24a63b..e02d8307 100644 --- a/.github/workflows/6.12-clang-13.yml +++ b/.github/workflows/6.12-clang-13.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-13.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-13.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -893,7 +893,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-13.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-13.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1342,7 +1342,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-13.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-13.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-14.yml b/.github/workflows/6.12-clang-14.yml index e1186d4f..3055abb5 100644 --- a/.github/workflows/6.12-clang-14.yml +++ b/.github/workflows/6.12-clang-14.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-14.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-14.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -951,7 +951,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-14.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-14.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1400,7 +1400,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-14.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-14.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-15.yml b/.github/workflows/6.12-clang-15.yml index a2741019..722e49f8 100644 --- a/.github/workflows/6.12-clang-15.yml +++ b/.github/workflows/6.12-clang-15.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-15.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-15.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1038,7 +1038,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-15.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-15.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1545,7 +1545,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-15.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-15.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-16.yml b/.github/workflows/6.12-clang-16.yml index 0b9ab533..bba1e524 100644 --- a/.github/workflows/6.12-clang-16.yml +++ b/.github/workflows/6.12-clang-16.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-16.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-16.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1212,7 +1212,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-16.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-16.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1719,7 +1719,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-16.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-16.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-17.yml b/.github/workflows/6.12-clang-17.yml index 5a69aaed..f8b7497b 100644 --- a/.github/workflows/6.12-clang-17.yml +++ b/.github/workflows/6.12-clang-17.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-17.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-17.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1212,7 +1212,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-17.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-17.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1777,7 +1777,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-17.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-17.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-18.yml b/.github/workflows/6.12-clang-18.yml index 721e492d..4b8854ce 100644 --- a/.github/workflows/6.12-clang-18.yml +++ b/.github/workflows/6.12-clang-18.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-18.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-18.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1328,7 +1328,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-18.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-18.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1893,7 +1893,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-18.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-18.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-19.yml b/.github/workflows/6.12-clang-19.yml index 376adec5..b00a75c8 100644 --- a/.github/workflows/6.12-clang-19.yml +++ b/.github/workflows/6.12-clang-19.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-19.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-19.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1328,7 +1328,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-19.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-19.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1893,7 +1893,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-19.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-19.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-20.yml b/.github/workflows/6.12-clang-20.yml index 650f5c40..769a911e 100644 --- a/.github/workflows/6.12-clang-20.yml +++ b/.github/workflows/6.12-clang-20.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-20.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-20.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1328,7 +1328,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-20.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-20.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1893,7 +1893,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-20.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-20.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/6.12-clang-21.yml b/.github/workflows/6.12-clang-21.yml index fed50b6c..ff78ff89 100644 --- a/.github/workflows/6.12-clang-21.yml +++ b/.github/workflows/6.12-clang-21.yml @@ -67,7 +67,7 @@ jobs: 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-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-21.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-21.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1328,7 +1328,7 @@ jobs: 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-6.12.y --job-name distribution_configs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-21.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name distribution_configs --json-out builds.json tuxsuite/6.12-clang-21.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -1893,7 +1893,7 @@ jobs: 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-6.12.y --job-name allconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-21.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name allconfigs --json-out builds.json tuxsuite/6.12-clang-21.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/android-mainline-clang-19.yml b/.github/workflows/android-mainline-clang-19.yml index 77129d71..eca31412 100644 --- a/.github/workflows/android-mainline-clang-19.yml +++ b/.github/workflows/android-mainline-clang-19.yml @@ -67,7 +67,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-19.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-19.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -197,7 +197,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-19.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json tuxsuite/android-mainline-clang-19.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/android-mainline-clang-20.yml b/.github/workflows/android-mainline-clang-20.yml index 34653fe8..8cebc2c8 100644 --- a/.github/workflows/android-mainline-clang-20.yml +++ b/.github/workflows/android-mainline-clang-20.yml @@ -67,7 +67,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-20.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-20.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -197,7 +197,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-20.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json tuxsuite/android-mainline-clang-20.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/.github/workflows/android-mainline-clang-21.yml b/.github/workflows/android-mainline-clang-21.yml index 774a40c8..b98e82d1 100644 --- a/.github/workflows/android-mainline-clang-21.yml +++ b/.github/workflows/android-mainline-clang-21.yml @@ -67,7 +67,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-21.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-21.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py @@ -197,7 +197,7 @@ jobs: 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://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-21.tux.yml || true + run: tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name allconfigs --json-out builds.json tuxsuite/android-mainline-clang-21.tux.yml || true - name: Update Cache Build Status if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }} run: python caching/update.py diff --git a/tuxsuite/6.12-clang-13.tux.yml b/tuxsuite/6.12-clang-13.tux.yml index 397c2119..757228c9 100644 --- a/tuxsuite/6.12-clang-13.tux.yml +++ b/tuxsuite/6.12-clang-13.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-13.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-13.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-13.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-14.tux.yml b/tuxsuite/6.12-clang-14.tux.yml index 7eac4de4..8dac8cb2 100644 --- a/tuxsuite/6.12-clang-14.tux.yml +++ b/tuxsuite/6.12-clang-14.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-14.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-14.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-14.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-15.tux.yml b/tuxsuite/6.12-clang-15.tux.yml index 14861895..3b9f34b3 100644 --- a/tuxsuite/6.12-clang-15.tux.yml +++ b/tuxsuite/6.12-clang-15.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-15.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-15.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-15.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-16.tux.yml b/tuxsuite/6.12-clang-16.tux.yml index c9f0976f..455adbb8 100644 --- a/tuxsuite/6.12-clang-16.tux.yml +++ b/tuxsuite/6.12-clang-16.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-16.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-16.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-16.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-17.tux.yml b/tuxsuite/6.12-clang-17.tux.yml index eebe5cae..4f213365 100644 --- a/tuxsuite/6.12-clang-17.tux.yml +++ b/tuxsuite/6.12-clang-17.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-17.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-17.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-17.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-18.tux.yml b/tuxsuite/6.12-clang-18.tux.yml index f3168920..5c8067e9 100644 --- a/tuxsuite/6.12-clang-18.tux.yml +++ b/tuxsuite/6.12-clang-18.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-18.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-18.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-18.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-19.tux.yml b/tuxsuite/6.12-clang-19.tux.yml index fcd42c3a..4076b2c9 100644 --- a/tuxsuite/6.12-clang-19.tux.yml +++ b/tuxsuite/6.12-clang-19.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-19.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-19.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-19.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-20.tux.yml b/tuxsuite/6.12-clang-20.tux.yml index 0e398ff4..c9c96ee8 100644 --- a/tuxsuite/6.12-clang-20.tux.yml +++ b/tuxsuite/6.12-clang-20.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-20.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-20.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-20.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/6.12-clang-21.tux.yml b/tuxsuite/6.12-clang-21.tux.yml index 5fb87471..6bcf85d7 100644 --- a/tuxsuite/6.12-clang-21.tux.yml +++ b/tuxsuite/6.12-clang-21.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 6.12 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json --patch-series patches/6.12 tuxsuite/6.12-clang-21.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.12.y --job-name defconfigs --json-out builds.json tuxsuite/6.12-clang-21.tux.yml # Invoke locally via: # $ git clone -b linux-6.12.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/6.12 # $ scripts/build-local.py -C linux -f tuxsuite/6.12-clang-21.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-6.12.y diff --git a/tuxsuite/android-mainline-clang-19.tux.yml b/tuxsuite/android-mainline-clang-19.tux.yml index 980134f1..5abe4cbe 100644 --- a/tuxsuite/android-mainline-clang-19.tux.yml +++ b/tuxsuite/android-mainline-clang-19.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py android-mainline # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-19.tux.yml +# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-19.tux.yml # Invoke locally via: # $ git clone -b android-mainline --depth=1 https://android.googlesource.com/kernel/common.git linux -# $ git -C linux quiltimport --patches ../patches/android-mainline # $ scripts/build-local.py -C linux -f tuxsuite/android-mainline-clang-19.tux.yml -j defconfigs version: 1 name: https://android.googlesource.com/kernel/common.git at android-mainline diff --git a/tuxsuite/android-mainline-clang-20.tux.yml b/tuxsuite/android-mainline-clang-20.tux.yml index b96e7ce1..408fc75e 100644 --- a/tuxsuite/android-mainline-clang-20.tux.yml +++ b/tuxsuite/android-mainline-clang-20.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py android-mainline # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-20.tux.yml +# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-20.tux.yml # Invoke locally via: # $ git clone -b android-mainline --depth=1 https://android.googlesource.com/kernel/common.git linux -# $ git -C linux quiltimport --patches ../patches/android-mainline # $ scripts/build-local.py -C linux -f tuxsuite/android-mainline-clang-20.tux.yml -j defconfigs version: 1 name: https://android.googlesource.com/kernel/common.git at android-mainline diff --git a/tuxsuite/android-mainline-clang-21.tux.yml b/tuxsuite/android-mainline-clang-21.tux.yml index a9142bd4..0cde9931 100644 --- a/tuxsuite/android-mainline-clang-21.tux.yml +++ b/tuxsuite/android-mainline-clang-21.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py android-mainline # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json --patch-series patches/android-mainline tuxsuite/android-mainline-clang-21.tux.yml +# $ tuxsuite plan --git-repo https://android.googlesource.com/kernel/common.git --git-ref android-mainline --job-name defconfigs --json-out builds.json tuxsuite/android-mainline-clang-21.tux.yml # Invoke locally via: # $ git clone -b android-mainline --depth=1 https://android.googlesource.com/kernel/common.git linux -# $ git -C linux quiltimport --patches ../patches/android-mainline # $ scripts/build-local.py -C linux -f tuxsuite/android-mainline-clang-21.tux.yml -j defconfigs version: 1 name: https://android.googlesource.com/kernel/common.git at android-mainline