mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 KiB
Bash
Executable File
#!/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 install 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.
|
|
export MYGOBIN
|
|
mdrip --mode test --blockTimeOut 15m \
|
|
--label testAgainstLatestRelease examples
|
|
|
|
# TODO: make work for non-linux
|
|
if onLinuxAndNotOnRemoteCI; then
|
|
if [ "$version" == "HEAD" ]; then
|
|
echo "On linux, and not on remote CI. Running helm tests."
|
|
make $MYGOBIN/helmV3
|
|
mdrip --mode test --label testHelm examples/chart.md
|
|
else
|
|
echo "Skipping helm tests against $version."
|
|
echo "Helm chart inflator has new features (includeCRD) only in HEAD."
|
|
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}."
|