Skip to content

Commit 0973e9a

Browse files
authored
Merge pull request #614 from holyspectral/upgrade-bpfvalidator
chore: upgrade bpfvalidator to 0.5.0
2 parents 7b88290 + 5a4d0ee commit 0973e9a

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/actions/bpfvalidator/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ runs:
6565
working-directory: ${{ github.action_path }}
6666
run: |
6767
export PATH="$HOME/.local/bin:$PATH"
68-
wget https://github.com/Andreagit97/bpfvalidator/releases/download/v0.4.0/bpfvalidator_0.4.0_linux_${INPUTS_ARCH}.tar.gz
69-
tar -xvf bpfvalidator_0.4.0_linux_${INPUTS_ARCH}.tar.gz
68+
wget https://github.com/Andreagit97/bpfvalidator/releases/download/v0.5.0/bpfvalidator_0.5.0_linux_${INPUTS_ARCH}.tar.gz
69+
echo "cac941141ba3a54f2ae90ce226bf30101dd01b61aa03d24cc5220228283111d4 bpfvalidator_0.5.0_linux_amd64.tar.gz" >> checksums.txt
70+
echo "f8ff927815aec18f3265d9d7d12b93c85d6fe143a91706a42cfc2ec16d7ae44d bpfvalidator_0.5.0_linux_arm64.tar.gz" >> checksums.txt
71+
72+
sha256sum --ignore-missing -c checksums.txt && tar -xvf bpfvalidator_0.5.0_linux_${INPUTS_ARCH}.tar.gz
7073
./bpfvalidator --out_path=/tmp/report.txt ${INPUTS_ARGS}
7174
outcome=$?
7275
echo "outcome=$outcome" >> $GITHUB_OUTPUT

bpfvalidator-amd64-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Number of parallel VMs to run
22
parallel: 4
3-
# kernel versions to test
4-
kernel_versions:
3+
vm_configs:
54
- v5.10.251
65
- v5.15.201
76
- v6.1.167

bpfvalidator-arm64-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Number of parallel VMs to run
22
parallel: 3
3-
# kernel versions to test
4-
kernel_versions:
3+
vm_configs:
54
- v6.4
65
- v6.6.130
76
- v6.12.78

0 commit comments

Comments
 (0)