Skip to content

Commit dea4437

Browse files
authored
Merge pull request #890 from nathanchance/update-stable-anchor-for-6.18
Update stable anchor to 6.18
2 parents 394d587 + 29d3028 commit dea4437

32 files changed

+250
-3890
lines changed

.github/workflows/stable-clang-13.yml

Lines changed: 0 additions & 1134 deletions
This file was deleted.

.github/workflows/stable-clang-14.yml

Lines changed: 0 additions & 1337 deletions
This file was deleted.

.github/workflows/stable-clang-15.yml

Lines changed: 5 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: check-patches-apply.py
25-
run: python3 scripts/check-patches-apply.py --patches-dir patches/stable --repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --ref linux-6.17.y
25+
run: python3 scripts/check-patches-apply.py --patches-dir patches/stable --repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --ref linux-6.18.y
2626
check_cache:
2727
name: Check Cache
2828
runs-on: ubuntu-latest
2929
container: tuxmake/x86_64_korg-clang-15
3030
needs: check_patches
3131
env:
3232
GIT_REPO: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
33-
GIT_REF: linux-6.17.y
33+
GIT_REF: linux-6.18.y
3434
outputs:
3535
output: ${{ steps.step2.outputs.output }}
3636
status: ${{ steps.step2.outputs.status }}
@@ -67,7 +67,7 @@ jobs:
6767
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
6868
- name: tuxsuite
6969
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
70-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name defconfigs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
70+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name defconfigs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
7171
- name: Update Cache Build Status
7272
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
7373
run: python caching/update.py
@@ -320,35 +320,6 @@ jobs:
320320
name: boot_utils_json_defconfigs
321321
- name: Check Build and Boot Logs
322322
run: scripts/check-logs.py
323-
_e1084951b99347c2cf3f483a2bc53b61:
324-
runs-on: ubuntu-latest
325-
needs:
326-
- kick_tuxsuite_defconfigs
327-
- check_cache
328-
- check_patches
329-
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=15 defconfig+CONFIG_CPU_BIG_ENDIAN=y
330-
if: ${{ needs.check_cache.outputs.status != 'pass' }}
331-
env:
332-
ARCH: arm64
333-
LLVM_VERSION: 15
334-
BOOT: 1
335-
CONFIG: defconfig+CONFIG_CPU_BIG_ENDIAN=y
336-
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
337-
container:
338-
image: ghcr.io/clangbuiltlinux/qemu
339-
options: --ipc=host
340-
steps:
341-
- uses: actions/checkout@v4
342-
with:
343-
submodules: true
344-
- uses: actions/download-artifact@v4
345-
with:
346-
name: output_artifact_defconfigs
347-
- uses: actions/download-artifact@v4
348-
with:
349-
name: boot_utils_json_defconfigs
350-
- name: Check Build and Boot Logs
351-
run: scripts/check-logs.py
352323
_e32b19d33529170300f8490cbf5e8869:
353324
runs-on: ubuntu-latest
354325
needs:
@@ -1038,7 +1009,7 @@ jobs:
10381009
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
10391010
- name: tuxsuite
10401011
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
1041-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name distribution_configs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
1012+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name distribution_configs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
10421013
- name: Update Cache Build Status
10431014
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
10441015
run: python caching/update.py
@@ -1545,7 +1516,7 @@ jobs:
15451516
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
15461517
- name: tuxsuite
15471518
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
1548-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name allconfigs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
1519+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name allconfigs --json-out builds.json tuxsuite/stable-clang-15.tux.yml || true
15491520
- name: Update Cache Build Status
15501521
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
15511522
run: python caching/update.py

.github/workflows/stable-clang-16.yml

Lines changed: 20 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: check-patches-apply.py
25-
run: python3 scripts/check-patches-apply.py --patches-dir patches/stable --repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --ref linux-6.17.y
25+
run: python3 scripts/check-patches-apply.py --patches-dir patches/stable --repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --ref linux-6.18.y
2626
check_cache:
2727
name: Check Cache
2828
runs-on: ubuntu-latest
2929
container: tuxmake/x86_64_korg-clang-16
3030
needs: check_patches
3131
env:
3232
GIT_REPO: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
33-
GIT_REF: linux-6.17.y
33+
GIT_REF: linux-6.18.y
3434
outputs:
3535
output: ${{ steps.step2.outputs.output }}
3636
status: ${{ steps.step2.outputs.status }}
@@ -67,7 +67,7 @@ jobs:
6767
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
6868
- name: tuxsuite
6969
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
70-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name defconfigs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
70+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name defconfigs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
7171
- name: Update Cache Build Status
7272
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
7373
run: python caching/update.py
@@ -204,19 +204,19 @@ jobs:
204204
name: boot_utils_json_defconfigs
205205
- name: Check Build and Boot Logs
206206
run: scripts/check-logs.py
207-
_6caf4470519e51764e10589f05d70d73:
207+
_e32cdef2e6555f24309fd9270aa27cf5:
208208
runs-on: ubuntu-latest
209209
needs:
210210
- kick_tuxsuite_defconfigs
211211
- check_cache
212212
- check_patches
213-
name: ARCH=arm LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 multi_v7_defconfig+CONFIG_CFI_CLANG=y
213+
name: ARCH=arm LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 multi_v7_defconfig+CONFIG_CFI=y
214214
if: ${{ needs.check_cache.outputs.status != 'pass' }}
215215
env:
216216
ARCH: arm
217217
LLVM_VERSION: 16
218218
BOOT: 1
219-
CONFIG: multi_v7_defconfig+CONFIG_CFI_CLANG=y
219+
CONFIG: multi_v7_defconfig+CONFIG_CFI=y
220220
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
221221
container:
222222
image: ghcr.io/clangbuiltlinux/qemu
@@ -349,35 +349,6 @@ jobs:
349349
name: boot_utils_json_defconfigs
350350
- name: Check Build and Boot Logs
351351
run: scripts/check-logs.py
352-
_83636c808c5c0dbe8287ecdd6425210c:
353-
runs-on: ubuntu-latest
354-
needs:
355-
- kick_tuxsuite_defconfigs
356-
- check_cache
357-
- check_patches
358-
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CPU_BIG_ENDIAN=y
359-
if: ${{ needs.check_cache.outputs.status != 'pass' }}
360-
env:
361-
ARCH: arm64
362-
LLVM_VERSION: 16
363-
BOOT: 1
364-
CONFIG: defconfig+CONFIG_CPU_BIG_ENDIAN=y
365-
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
366-
container:
367-
image: ghcr.io/clangbuiltlinux/qemu
368-
options: --ipc=host
369-
steps:
370-
- uses: actions/checkout@v4
371-
with:
372-
submodules: true
373-
- uses: actions/download-artifact@v4
374-
with:
375-
name: output_artifact_defconfigs
376-
- uses: actions/download-artifact@v4
377-
with:
378-
name: boot_utils_json_defconfigs
379-
- name: Check Build and Boot Logs
380-
run: scripts/check-logs.py
381352
_6ba0787bd3d0f66517f6d6ace8dc3060:
382353
runs-on: ubuntu-latest
383354
needs:
@@ -436,19 +407,19 @@ jobs:
436407
name: boot_utils_json_defconfigs
437408
- name: Check Build and Boot Logs
438409
run: scripts/check-logs.py
439-
_8e78126e8c0351a6b502ee1434a6c568:
410+
_2bad73de6a25b8b5e6c9109815549090:
440411
runs-on: ubuntu-latest
441412
needs:
442413
- kick_tuxsuite_defconfigs
443414
- check_cache
444415
- check_patches
445-
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI_CLANG=y
416+
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI=y
446417
if: ${{ needs.check_cache.outputs.status != 'pass' }}
447418
env:
448419
ARCH: arm64
449420
LLVM_VERSION: 16
450421
BOOT: 1
451-
CONFIG: defconfig+CONFIG_CFI_CLANG=y
422+
CONFIG: defconfig+CONFIG_CFI=y
452423
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
453424
container:
454425
image: ghcr.io/clangbuiltlinux/qemu
@@ -465,19 +436,19 @@ jobs:
465436
name: boot_utils_json_defconfigs
466437
- name: Check Build and Boot Logs
467438
run: scripts/check-logs.py
468-
_5869edec3360f833ad54fe55f6972336:
439+
_36e3a0b5dee14663fc448bb36ed84d22:
469440
runs-on: ubuntu-latest
470441
needs:
471442
- kick_tuxsuite_defconfigs
472443
- check_cache
473444
- check_patches
474-
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI_CLANG=y+CONFIG_LTO_CLANG_THIN=y
445+
name: ARCH=arm64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI=y+CONFIG_LTO_CLANG_THIN=y
475446
if: ${{ needs.check_cache.outputs.status != 'pass' }}
476447
env:
477448
ARCH: arm64
478449
LLVM_VERSION: 16
479450
BOOT: 1
480-
CONFIG: defconfig+CONFIG_CFI_CLANG=y+CONFIG_LTO_CLANG_THIN=y
451+
CONFIG: defconfig+CONFIG_CFI=y+CONFIG_LTO_CLANG_THIN=y
481452
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
482453
container:
483454
image: ghcr.io/clangbuiltlinux/qemu
@@ -1045,19 +1016,19 @@ jobs:
10451016
name: boot_utils_json_defconfigs
10461017
- name: Check Build and Boot Logs
10471018
run: scripts/check-logs.py
1048-
_4905de907e729b69087ab43c1a24fc13:
1019+
_36478640ed6359ab2cc3c5b894129f02:
10491020
runs-on: ubuntu-latest
10501021
needs:
10511022
- kick_tuxsuite_defconfigs
10521023
- check_cache
10531024
- check_patches
1054-
name: ARCH=x86_64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI_CLANG=y
1025+
name: ARCH=x86_64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI=y
10551026
if: ${{ needs.check_cache.outputs.status != 'pass' }}
10561027
env:
10571028
ARCH: x86_64
10581029
LLVM_VERSION: 16
10591030
BOOT: 1
1060-
CONFIG: defconfig+CONFIG_CFI_CLANG=y
1031+
CONFIG: defconfig+CONFIG_CFI=y
10611032
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
10621033
container:
10631034
image: ghcr.io/clangbuiltlinux/qemu
@@ -1074,19 +1045,19 @@ jobs:
10741045
name: boot_utils_json_defconfigs
10751046
- name: Check Build and Boot Logs
10761047
run: scripts/check-logs.py
1077-
_0e35d288cd97cfcbfb5e7347f1627fb8:
1048+
_ad4dd51ba6e04b9a76a4f01a1b3c870a:
10781049
runs-on: ubuntu-latest
10791050
needs:
10801051
- kick_tuxsuite_defconfigs
10811052
- check_cache
10821053
- check_patches
1083-
name: ARCH=x86_64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI_CLANG=y+CONFIG_LTO_CLANG_THIN=y
1054+
name: ARCH=x86_64 LLVM=1 LLVM_IAS=1 LLVM_VERSION=16 defconfig+CONFIG_CFI=y+CONFIG_LTO_CLANG_THIN=y
10841055
if: ${{ needs.check_cache.outputs.status != 'pass' }}
10851056
env:
10861057
ARCH: x86_64
10871058
LLVM_VERSION: 16
10881059
BOOT: 1
1089-
CONFIG: defconfig+CONFIG_CFI_CLANG=y+CONFIG_LTO_CLANG_THIN=y
1060+
CONFIG: defconfig+CONFIG_CFI=y+CONFIG_LTO_CLANG_THIN=y
10901061
REPO_SCOPED_PAT: ${{ secrets.REPO_SCOPED_PAT }}
10911062
container:
10921063
image: ghcr.io/clangbuiltlinux/qemu
@@ -1212,7 +1183,7 @@ jobs:
12121183
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
12131184
- name: tuxsuite
12141185
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
1215-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name distribution_configs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
1186+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name distribution_configs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
12161187
- name: Update Cache Build Status
12171188
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
12181189
run: python caching/update.py
@@ -1719,7 +1690,7 @@ jobs:
17191690
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
17201691
- name: tuxsuite
17211692
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
1722-
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.17.y --job-name allconfigs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
1693+
run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-6.18.y --job-name allconfigs --json-out builds.json tuxsuite/stable-clang-16.tux.yml || true
17231694
- name: Update Cache Build Status
17241695
if: ${{ needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch' }}
17251696
run: python caching/update.py

0 commit comments

Comments
 (0)