Skip to content

Commit

Permalink
πŸ‘·β€β™‚οΈ Install envtest binaries in CI for functional tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
  • Loading branch information
coderanger committed Apr 30, 2021
1 parent 36ba91c commit ac96268
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ jobs:
- name: Verify Generated clientset is up to date
run: make clientset-verify

- name: Install Kubebuilder Tools
id: install-kubebuilder-tools
run: |
os=$(go env GOOS)
arch=$(go env GOARCH)
curl -L https://go.kubebuilder.io/dl/2.3.1/${os}/${arch} | tar -xz -C /tmp/
sudo mv /tmp/kubebuilder_2.3.1_${os}_${arch} /usr/local/kubebuilder
- name: Build
run: make build

Expand Down

0 comments on commit ac96268

Please sign in to comment.