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 441bad0 commit 2cbea81Copy full SHA for 2cbea81
scripts/ci-conformance.sh
@@ -71,7 +71,8 @@ build_k8s() {
71
# ensure the e2e script will find our binaries ...
72
mkdir -p "${PWD}/_output/bin/"
73
cp -f "${PWD}/bazel-bin/test/e2e/e2e.test" "${PWD}/_output/bin/e2e.test"
74
- cp -f "${PWD}/bazel-bin/vendor/github.com/onsi/ginkgo/ginkgo/darwin_amd64_stripped/ginkgo" "${PWD}/_output/bin/ginkgo"
+ # workaround for mac os
75
+ cp -f "${PWD}/bazel-bin/vendor/github.com/onsi/ginkgo/ginkgo/darwin_amd64_stripped/ginkgo" "${PWD}/_output/bin/ginkgo" || true
76
export KUBECTL_PATH="$(dirname "$(find "${PWD}/bazel-bin/" -name kubectl -type f)")/kubectl"
77
PATH="${KUBECTL_PATH}:${PATH}"
78
export PATH
0 commit comments