-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factor out tar-artifacts action (#148)
Rework tar-artifact.sh script, making it suitable for use as an independent github action. Use tar -rf (append) to accumulate files of interest before compressing with zstd. Control groups of artifacts to include (e.g. selftests/bpf, selftests/sched_ext) with environment variables.
- Loading branch information
Showing
5 changed files
with
156 additions
and
116 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Tar build artifacts | ||
|
||
This action creates a tarball with kbuild-output and other build | ||
artifacts necessary to run the selftests. | ||
|
||
The action is expected to be executed by a workflow with access to the | ||
Linux kernel repository. | ||
|
||
## Required inputs | ||
|
||
* `arch` - Kernel build architecture, required to find image_name | ||
* `archive` - path to the produced .zst archive | ||
* `kbuild-output` - Path to the kernel build output | ||
* `repo-root` - Path to the root of the Linux kernel repository | ||
|
||
# Archive options | ||
|
||
Essential content of the directory passed via `kbuild-output` input is | ||
always included in the tarball. | ||
|
||
For selftests artifacts the script checks environment variables to | ||
determine what to include. These are handled as bash flags: | ||
emptystring means false, any other value means true. | ||
|
||
* `ARCHIVE_BPF_SELFTESTS` - add `tools/testing/selftests/bpf` binaries | ||
under `selftests/bpf` in the tarball | ||
* `ARCHIVE_MAKE_HELPERS` - add all the Linux repo makefiles and other | ||
scripts | ||
* `ARCHIVE_SCHED_EXT_SELFTESTS` - add | ||
`tools/testing/selftests/sched_ext` binaries under | ||
`selftests/sched_ext` in the tarball | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: 'Tar build artifacts' | ||
inputs: | ||
arch: | ||
description: 'Target arch of the kernel, required for finding the image' | ||
required: true | ||
archive: | ||
description: 'Path to the output archive' | ||
required: true | ||
kbuild-output: | ||
description: 'Path to the kernel build output for archiving' | ||
required: true | ||
repo-root: | ||
description: "Path to the root of the kernel repository" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Run tar-artifacts.sh | ||
env: | ||
KBUILD_OUTPUT: ${{ inputs.kbuild-output }} | ||
REPO_ROOT: ${{ inputs.repo-root }} | ||
ARCH: ${{ inputs.arch }} | ||
shell: bash | ||
run: | ||
${GITHUB_ACTION_PATH}/tar-artifacts.sh ${{ inputs.archive }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#!/bin/bash | ||
|
||
set -eux -o pipefail | ||
|
||
if [ ! -d "${REPO_ROOT:-}" ]; then | ||
echo "REPO_ROOT must be a directory: ${REPO_ROOT}" | ||
exit 1 | ||
fi | ||
|
||
if [ ! -d "${KBUILD_OUTPUT:-}" ]; then | ||
echo "KBUILD_OUTPUT must be a directory: ${KBUILD_OUTPUT}" | ||
exit 1 | ||
fi | ||
|
||
zst_tarball="$1" | ||
arch="${ARCH}" | ||
|
||
ARCHIVE_BPF_SELFTESTS="${ARCHIVE_BPF_SELFTESTS:-true}" | ||
ARCHIVE_MAKE_HELPERS="${ARCHIVE_MAKE_HELPERS:-}" | ||
ARCHIVE_SCHED_EXT_SELFTESTS="${ARCHIVE_SCHED_EXT_SELFTESTS:-}" | ||
|
||
tarball=$(mktemp ./artifacts.XXXXXXXX.tar) | ||
|
||
source "${GITHUB_ACTION_PATH}/../helpers.sh" | ||
|
||
# Strip debug information, which is excessively large (consuming | ||
# bandwidth) while not actually being used (the kernel does not use | ||
# DWARF to symbolize stacktraces). | ||
"${arch}"-linux-gnu-strip --strip-debug "${KBUILD_OUTPUT}"/vmlinux | ||
|
||
image_name=$(make -C ${REPO_ROOT} ARCH="$(platform_to_kernel_arch "${arch}")" -s image_name) | ||
kbuild_output_file_list=( | ||
".config" | ||
"${image_name}" | ||
"include/config/auto.conf" | ||
"include/generated/autoconf.h" | ||
"vmlinux" | ||
) | ||
|
||
tar -rf "${tarball}" -C "${KBUILD_OUTPUT}" \ | ||
--transform "s,^,kbuild-output/," \ | ||
"${kbuild_output_file_list[@]}" | ||
|
||
# In case artifacts are restored not to the kernel repo root, | ||
# package up a bunch of additional infrastructure to support running | ||
# 'make kernelrelease' and bpf tool checks later on. | ||
if [[ -n "${ARCHIVE_MAKE_HELPERS}" ]]; then | ||
find "${REPO_ROOT}" -iname Makefile -printf '%P\n' \ | ||
| tar -rf "${tarball}" -C "${REPO_ROOT}" -T - | ||
tar -rf "${tarball}" -C "${REPO_ROOT}" \ | ||
--exclude '*.o' \ | ||
--exclude '*.d' \ | ||
"scripts/" \ | ||
"tools/testing/selftests/bpf/" \ | ||
"tools/include/" \ | ||
"tools/bpf/bpftool/" | ||
fi | ||
|
||
if [[ -n "${ARCHIVE_BPF_SELFTESTS}" ]]; then | ||
# add .bpf.o files | ||
find "${REPO_ROOT}/tools/testing/selftests/bpf" \ | ||
-name "*.bpf.o" -printf 'selftests/bpf/%P\n' \ | ||
| tar -rf "${tarball}" -C "${REPO_ROOT}/tools/testing" -T - | ||
# add other relevant files | ||
tar -rf "${tarball}" -C "${REPO_ROOT}/tools/testing" \ | ||
--exclude '*.cmd' \ | ||
--exclude '*.d' \ | ||
--exclude '*.h' \ | ||
--exclude '*.o' \ | ||
--exclude '*.output' \ | ||
selftests/bpf/ | ||
fi | ||
|
||
if [[ -n "${ARCHIVE_SCHED_EXT_SELFTESTS}" ]]; then | ||
tar -rf "${tarball}" -C "${REPO_ROOT}/tools/testing" selftests/sched_ext/ | ||
fi | ||
|
||
zstd -T0 -19 -i "${tarball}" -o "${zst_tarball}" | ||
|