mirror of https://github.com/kubernetes/kops.git
updating functionality to verify bazel build files
This commit is contained in:
parent
dd1e2098fb
commit
798d40b4a2
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"GoPrefix": "k8s.io/kops",
|
||||||
|
"AddSourcesRules": true
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# Copyright 2017 The Kubernetes Authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
PKG=$1
|
||||||
|
COMMIT=$2
|
||||||
|
export GOPATH=$3
|
||||||
|
export GOBIN="$GOPATH/bin"
|
||||||
|
|
||||||
|
go get -d -u "${PKG}"
|
||||||
|
cd "${GOPATH}/src/${PKG}"
|
||||||
|
git checkout -q "${COMMIT}"
|
||||||
|
go install "${PKG}"
|
|
@ -0,0 +1,39 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# Copyright 2016 The Kubernetes Authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
KOPS_ROOT=$(git rev-parse --show-toplevel)
|
||||||
|
# https://github.com/kubernetes/test-infra/issues/5699#issuecomment-348350792
|
||||||
|
cd ${KOPS_ROOT}
|
||||||
|
TMP_GOPATH=$(mktemp -d)
|
||||||
|
|
||||||
|
# manually remove BUILD file for k8s.io/apimachinery/pkg/util/sets/BUILD if it
|
||||||
|
# exists; there is a specific set-gen rule that breaks importing
|
||||||
|
# ref: https://github.com/kubernetes/kubernetes/blob/4e2f5e2212b05a305435ef96f4b49dc0932e1264/staging/src/k8s.io/apimachinery/pkg/util/sets/BUILD#L23-L49
|
||||||
|
# rm -f ${KOPS_ROOT}/vendor/k8s.io/apimachinery/pkg/util/sets/{BUILD,BUILD.bazel}
|
||||||
|
|
||||||
|
"${KOPS_ROOT}/hack/go_install_from_commit.sh" \
|
||||||
|
github.com/bazelbuild/bazel-gazelle/cmd/gazelle \
|
||||||
|
eaa1e87d2a3ca716780ca6650ef5b9b9663b8773 \
|
||||||
|
"${TMP_GOPATH}"
|
||||||
|
|
||||||
|
"${TMP_GOPATH}/bin/gazelle" fix \
|
||||||
|
-external=vendored \
|
||||||
|
-mode=fix \
|
||||||
|
-proto=disable \
|
||||||
|
-repo_root="${KOPS_ROOT}"
|
|
@ -17,49 +17,37 @@ set -o errexit
|
||||||
set -o nounset
|
set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
export KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
|
KOPS_ROOT=$(git rev-parse --show-toplevel)
|
||||||
|
TMP_GOPATH=$(mktemp -d)
|
||||||
|
cd "${KOPS_ROOT}"
|
||||||
|
|
||||||
# Example: kube::util::trap_add 'echo "in trap DEBUG"' DEBUG
|
"${KOPS_ROOT}/hack/go_install_from_commit.sh" \
|
||||||
# See: http://stackoverflow.com/questions/3338030/multiple-bash-traps-for-the-same-signal
|
github.com/bazelbuild/bazel-gazelle/cmd/gazelle \
|
||||||
trap_add() {
|
eaa1e87d2a3ca716780ca6650ef5b9b9663b8773 \
|
||||||
local trap_add_cmd
|
"${TMP_GOPATH}"
|
||||||
trap_add_cmd=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
for trap_add_name in "$@"; do
|
|
||||||
local existing_cmd
|
|
||||||
local new_cmd
|
|
||||||
|
|
||||||
# Grab the currently defined trap commands for this trap
|
gazelle_diff=$("${TMP_GOPATH}/bin/gazelle" fix \
|
||||||
existing_cmd=`trap -p "${trap_add_name}" | awk -F"'" '{print $2}'`
|
-external=vendored \
|
||||||
|
-mode=diff \
|
||||||
|
-proto=disable \
|
||||||
|
-repo_root="${KOPS_ROOT}")
|
||||||
|
|
||||||
if [[ -z "${existing_cmd}" ]]; then
|
if [[ -n "${gazelle_diff}" ]]; then
|
||||||
new_cmd="${trap_add_cmd}"
|
echo "${gazelle_diff}" >&2
|
||||||
else
|
echo >&2
|
||||||
new_cmd="${trap_add_cmd};${existing_cmd}"
|
echo "Run ./hack/update-bazel.sh" >&2
|
||||||
fi
|
exit 1
|
||||||
|
fi
|
||||||
# Assign the test
|
|
||||||
trap "${new_cmd}" "${trap_add_name}"
|
# Make sure there are no BUILD files outside vendor - we should only have
|
||||||
done
|
# BUILD.bazel files.
|
||||||
}
|
old_build_files=$(find . -name BUILD \( -type f -o -type l \) \
|
||||||
|
-not -path './vendor/*' | sort)
|
||||||
_tmpdir="$(mktemp -d -t verify-bazel.XXXXXX)"
|
if [[ -n "${old_build_files}" ]]; then
|
||||||
trap_add "rm -rf ${_tmpdir}" EXIT
|
echo "One or more BUILD files found in the tree:" >&2
|
||||||
|
echo "${old_build_files}" >&2
|
||||||
_tmp_gopath="${_tmpdir}/go"
|
echo >&2
|
||||||
_tmp_kuberoot="${_tmp_gopath}/src/k8s.io/kops"
|
echo "Only BUILD.bazel is allowed." >&2
|
||||||
mkdir -p "${_tmp_kuberoot}/.."
|
|
||||||
cp -a "${KUBE_ROOT}" "${_tmp_kuberoot}/.."
|
|
||||||
|
|
||||||
cd "${_tmp_kuberoot}"
|
|
||||||
GOPATH="${_tmp_gopath}" bazel run //:gazelle
|
|
||||||
|
|
||||||
diff=$(diff -Naupr "${KUBE_ROOT}" "${_tmp_kuberoot}" || true)
|
|
||||||
|
|
||||||
if [[ -n "${diff}" ]]; then
|
|
||||||
echo "${diff}"
|
|
||||||
echo
|
|
||||||
echo "Run make bazel-gazelle"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue