Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/kernel-build-and-test-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,18 @@ jobs:
path: output/kernel-build.log
retention-days: 7

# Upload kernel binaries tarball (vmlinuz, modules, config) for downstream testing.
# Produced by build_kernel.sh in kernel-container-build; the tarball inside is
# named kernel-<kernelrelease>-<arch>.tar.xz.
- name: Upload kernel binaries tarball
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: always()
with:
name: kernel-binaries-${{ matrix.arch }}
path: output/kernel-*.tar.xz
retention-days: 7
if-no-files-found: warn

# Upload kselftests qcow2 image
- name: Upload kselftests qcow2 image
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
Expand Down