mirror of https://github.com/knative/pkg.git
64 lines
2.2 KiB
Bash
Executable File
64 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020 The Knative 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
|
|
|
|
source $(dirname $0)/../vendor/knative.dev/hack/library.sh
|
|
|
|
CODEGEN_PKG=${CODEGEN_PKG:-$(cd ${REPO_ROOT_DIR}; ls -d -1 $(dirname $0)/../vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)}
|
|
KNATIVE_CODEGEN_PKG=${KNATIVE_CODEGEN_PKG:-$(cd ${REPO_ROOT_DIR}; ls -d -1 $(dirname $0)/../vendor/knative.dev/pkg 2>/dev/null || echo ../pkg)}
|
|
|
|
GENCLIENT_PKG=knative.dev/pkg/test/genclient
|
|
|
|
echo "Pre-deleting $(dirname $0)/genclient"
|
|
rm -rf $(dirname $0)/genclient
|
|
|
|
header "Test Generated Reconciler Builds."
|
|
|
|
chmod +x ${CODEGEN_PKG}/generate-groups.sh
|
|
|
|
${CODEGEN_PKG}/generate-groups.sh "deepcopy,client,informer,lister" \
|
|
${GENCLIENT_PKG} knative.dev/pkg/apis/test \
|
|
"example:v1alpha1" \
|
|
--go-header-file ${REPO_ROOT_DIR}/hack/boilerplate/boilerplate.go.txt
|
|
|
|
# Knative Injection
|
|
${KNATIVE_CODEGEN_PKG}/hack/generate-knative.sh "injection" \
|
|
${GENCLIENT_PKG} knative.dev/pkg/apis/test \
|
|
"example:v1alpha1" \
|
|
--go-header-file ${REPO_ROOT_DIR}/hack/boilerplate/boilerplate.go.txt \
|
|
--force-genreconciler-kinds "Foo"
|
|
|
|
${CODEGEN_PKG}/generate-groups.sh "deepcopy,client,informer,lister" \
|
|
${GENCLIENT_PKG}/pub knative.dev/pkg/apis/test \
|
|
"pub:v1alpha1" \
|
|
--go-header-file ${REPO_ROOT_DIR}/hack/boilerplate/boilerplate.go.txt
|
|
|
|
# Knative Injection
|
|
${KNATIVE_CODEGEN_PKG}/hack/generate-knative.sh "injection" \
|
|
${GENCLIENT_PKG}/pub knative.dev/pkg/apis/test \
|
|
"pub:v1alpha1" \
|
|
--go-header-file ${REPO_ROOT_DIR}/hack/boilerplate/boilerplate.go.txt
|
|
|
|
if ! go build -v $(dirname $0)/genclient/... ; then
|
|
exit 1
|
|
fi
|
|
|
|
echo "Finished, deleting $(dirname $0)/genclient"
|
|
rm -rf $(dirname $0)/genclient
|