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 713219b commit cd44898Copy full SHA for cd44898
.circleci/config.yml
@@ -70,6 +70,14 @@ jobs:
70
- install-controller-tools
71
# we're not using the go/test command from the Go orb because that uses `-count=1` as an argument.
72
# That means all tests are run every time, instead of honoring the cache.
73
+ - run:
74
+ name: Install setup-envtest
75
+ command: go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
76
77
+ name: install required tools
78
+ command: setup-envtest use -p env && source <(setup-envtest use -p env) && echo $KUBEBUILDER_ASSETS
79
+ - run: |
80
+ echo $KUBEBUILDER_ASSETS
81
- run:
82
command: go test -race ./...
83
- save-build-cache
0 commit comments