Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
theihor committed Feb 11, 2025
1 parent dcde0b8 commit 8974ebb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gcc-bpf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run: zstd -d -T0 vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst --stdout | tar -xf -

- name: Setup build environment
uses: libbpf/ci/setup-build-env@v3
uses: libbpf/ci/setup-build-env@main
with:
arch: ${{ inputs.arch }}
llvm-version: ${{ inputs.llvm-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kernel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
repo-root: ${{ env.REPO_ROOT }}

- name: Setup build environment
uses: libbpf/ci/setup-build-env@v3
uses: libbpf/ci/setup-build-env@main
with:
arch: ${{ inputs.arch }}
llvm-version: ${{ inputs.llvm-version }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/kernel-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: zstd -d -T0 vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst --stdout | tar -xf -

- name: Run selftests
uses: libbpf/ci/run-vmtest@v3
uses: libbpf/ci/run-vmtest@main
# https://github.com/actions/runner/issues/1483#issuecomment-1031671517
# booleans are weird in GH.
continue-on-error: ${{ fromJSON(env.CONTINUE_ON_ERROR) }}
Expand All @@ -86,3 +86,9 @@ jobs:
# Here we must use kbuild-output local to the repo, because
# it was extracted from the artifacts.
kbuild-output: ${{ env.REPO_ROOT }}/kbuild-output
- if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: tmon-logs-${{ inputs.arch }}-${{ inputs.toolchain_full }}-${{ inputs.test }}
if-no-files-found: ignore
path: /tmp/tmon_pcap/*

0 comments on commit 8974ebb

Please sign in to comment.