Skip to content

Commit 2cbea81

Browse files
author
Cecile Robert-Michon
committed
[conformance] Don't fail if can't move ginkgo binary
1 parent 441bad0 commit 2cbea81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/ci-conformance.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ build_k8s() {
7171
# ensure the e2e script will find our binaries ...
7272
mkdir -p "${PWD}/_output/bin/"
7373
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"
74+
# 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
7576
export KUBECTL_PATH="$(dirname "$(find "${PWD}/bazel-bin/" -name kubectl -type f)")/kubectl"
7677
PATH="${KUBECTL_PATH}:${PATH}"
7778
export PATH

0 commit comments

Comments
 (0)