-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GCC BPF: factor out into a separate job
In order to test selftests/bpf build with GCC BPF, the latest snapshot of GCC BPF compiler has to built from source. We don't want this to be a dependency for all the test runners, so introduce a separate gcc-bpf workflow that executes the following: * checkout Linux source tree and patch it (as in kernel-build) * download relevant artifacts with the KBUILD_OUTPUT objects (as in kernel-test) * build/download GCC BPF compiler * build selftests/bpf/test_progs-bpf_gcc runner, hence the test BPF objects built with GCC The test_progs-bpf_gcc runner is not executed on BPF CI yet [1], so successful selftests build is a successful job run. [1] https://lore.kernel.org/bpf/87bjw6qpje.fsf@oracle.com/
- Loading branch information
Showing
3 changed files
with
101 additions
and
12 deletions.
There are no files selected for viewing
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,84 @@ | ||
name: Testing GCC BPF compiler | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
runs_on: | ||
required: true | ||
type: string | ||
arch: | ||
required: true | ||
type: string | ||
llvm-version: | ||
required: true | ||
type: string | ||
toolchain: | ||
required: true | ||
type: string | ||
toolchain_full: | ||
required: true | ||
type: string | ||
download_sources: | ||
required: true | ||
type: boolean | ||
|
||
jobs: | ||
test: | ||
name: GCC BPF | ||
runs-on: ${{ fromJSON(inputs.runs_on) }} | ||
timeout-minutes: 100 | ||
env: | ||
ARCH: ${{ inputs.arch }} | ||
BPF_GCC_INSTALL_DIR: ${{ github.workspace }}/gcc-bpf | ||
BPF_NEXT_BASE_BRANCH: 'master' | ||
REPO_ROOT: ${{ github.workspace }}/src | ||
KBUILD_OUTPUT: ${{ github.workspace }}/src/kbuild-output | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- if: ${{ inputs.download_sources }} | ||
name: Download bpf-next tree | ||
uses: libbpf/ci/get-linux-source@v3 | ||
with: | ||
dest: ${{ env.REPO_ROOT }} | ||
rev: ${{ env.BPF_NEXT_BASE_BRANCH }} | ||
|
||
- uses: ./patch-kernel | ||
with: | ||
patches-root: '${{ github.workspace }}/ci/diffs' | ||
repo-root: ${{ env.REPO_ROOT }} | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }} | ||
path: ${{ env.REPO_ROOT }} | ||
|
||
- name: Untar artifacts | ||
working-directory: ${{ env.REPO_ROOT }} | ||
run: zstd -d -T0 vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst --stdout | tar -xf - | ||
|
||
- name: Setup build environment | ||
uses: ./setup-build-env | ||
with: | ||
arch: ${{ inputs.arch }} | ||
llvm-version: ${{ inputs.llvm-version }} | ||
|
||
- name: Build GCC BPF compiler | ||
uses: ./build-bpf-gcc | ||
with: | ||
install-dir: ${{ env.BPF_GCC_INSTALL_DIR }} | ||
|
||
- name: Build selftests/bpf/test_progs-bpf_gcc | ||
uses: ./build-selftests | ||
env: | ||
MAX_MAKE_JOBS: 32 | ||
BPF_GCC: ${{ env.BPF_GCC_INSTALL_DIR }} | ||
SELFTESTS_BPF_TARGETS: 'test_progs-bpf_gcc' | ||
with: | ||
arch: ${{ inputs.arch }} | ||
kernel-root: ${{ env.REPO_ROOT }} | ||
llvm-version: ${{ inputs.llvm-version }} | ||
toolchain: ${{ inputs.toolchain }} | ||
|
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