#!/usr/bin/env bash # # Copyright 2019 The Kubernetes Authors. # SPDX-License-Identifier: Apache-2.0 set -o nounset set -o errexit set -o pipefail version=$1 # All hack scripts should run from top level. . hack/shellHelpers.sh echo "Installing kustomize ${version}" MYGOBIN=$(go env GOBIN) MYGOBIN="${MYGOBIN:-$(go env GOPATH)/bin}" # Always rebuild, never assume the installed verion is # the right one to test. rm -f $MYGOBIN/kustomize if [ "$version" == "HEAD" ]; then (cd kustomize; go install .) else GO111MODULE=on go get sigs.k8s.io/kustomize/kustomize/${version} fi # TODO: change the label? # We test against the latest release, and HEAD, and presumably # any branch using this label, so it should probably get # a new value. mdrip --mode test --blockTimeOut 15m \ --label testAgainstLatestRelease examples # TODO: make work for non-linux if onLinuxAndNotOnRemoteCI; then echo "On linux, and not on remote CI. Running expensive tests." # TODO: remove the HEAD check once --enable-helm flag released. if [ "$version" == "HEAD" ]; then make $MYGOBIN/helmV3 mdrip --mode test --label testHelm examples/chart.md fi fi # Force outside logic to rebuild kustomize rather than # rely on whatever this script just did. Tests should # be order independent. echo "Removing kustomize ${version}" rm $MYGOBIN/kustomize echo "Example tests passed against ${version}."