Skip to content

Commit

Permalink
build: print $toolchain --version
Browse files Browse the repository at this point in the history
Signed-off-by: Manu Bretelle <[email protected]>
  • Loading branch information
chantra committed Aug 26, 2024
1 parent faf124a commit 1f88cda
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/kernel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,14 @@ jobs:
with:
arch: ${{ inputs.arch }}
llvm-version: ${{ inputs.llvm-version }}
- name: Print toolchain version used
shell: bash
run: |
TOOLCHAIN=${{ inputs.toolchain }}
if [ $TOOLCHAIN = "llvm" ]; then
TOOLCHAIN="clang-${{ inputs.llvm-version }}"
fi
${TOOLCHAIN} --version
- name: Build kernel image
uses: libbpf/ci/build-linux@main
with:
Expand Down

0 comments on commit 1f88cda

Please sign in to comment.