Skip to content

Commit

Permalink
Merge pull request kubernetes-retired#516 from jaehnri/fix-ebpf-depen…
Browse files Browse the repository at this point in the history
…dency-setup

apt-get update before installing ebpf's backend dependencies
  • Loading branch information
k8s-ci-robot authored May 26, 2023
2 parents f719a0b + 585efd0 commit 51d6b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
export PATH=$PATH:$GOBIN
echo "PATH=$PATH" >> $GITHUB_ENV
go install github.com/cilium/ebpf/cmd/[email protected]
sudo apt-get install -y clang llvm libelf-dev libpcap-dev gcc-multilib build-essential
sudo apt-get update && sudo apt-get install -y clang llvm libelf-dev libpcap-dev gcc-multilib build-essential
fi
- name: initialize ipvs module via ipvsadm
Expand Down

0 comments on commit 51d6b78

Please sign in to comment.