We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6421d commit fc041ddCopy full SHA for fc041dd
.github/workflows/kernel-build.yml
@@ -94,6 +94,14 @@ jobs:
94
arch: ${{ inputs.arch }}
95
llvm-version: ${{ inputs.llvm-version }}
96
pahole: c2f89dab3f2b0ebb53bab3ed8be32f41cb743c37
97
+ - name: Print toolchain version used
98
+ shell: bash
99
+ run: |
100
+ TOOLCHAIN=${{ inputs.toolchain }}
101
+ if [ $TOOLCHAIN = "llvm" ]; then
102
+ TOOLCHAIN="clang-${{ inputs.llvm-version }}"
103
+ fi
104
+ ${TOOLCHAIN} --version
105
- name: Build kernel image
106
uses: libbpf/ci/build-linux@main
107
with:
0 commit comments