mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
* chore: Upgrade Go module to v2 Signed-off-by: jannfis <jann@mistrust.net> * Restore import order Signed-off-by: jannfis <jann@mistrust.net> * fix knowntypes_normalizer codegen error Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix codegen Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix Procfile Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
28 lines
779 B
Bash
Executable file
28 lines
779 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
PROJECT_ROOT=$(cd $(dirname "$0")/.. ; pwd)
|
|
CODEGEN_PKG=${PROJECT_ROOT}/vendor/k8s.io/kube-openapi
|
|
VERSION="v1alpha1"
|
|
|
|
export GO111MODULE=off
|
|
go build -o dist/openapi-gen ${CODEGEN_PKG}/cmd/openapi-gen
|
|
|
|
export GO111MODULE=on
|
|
|
|
[ -e ./v2 ] || ln -s . v2
|
|
./dist/openapi-gen \
|
|
--go-header-file ${PROJECT_ROOT}/hack/custom-boilerplate.go.txt \
|
|
--input-dirs github.com/argoproj/argo-cd/v2/pkg/apis/application/${VERSION} \
|
|
--output-package github.com/argoproj/argo-cd/v2/pkg/apis/application/${VERSION} \
|
|
--report-filename pkg/apis/api-rules/violation_exceptions.list \
|
|
$@
|
|
[ -e ./v2 ] && rm -rf v2
|
|
|
|
export GO111MODULE=off
|
|
go build -o ./dist/gen-crd-spec ${PROJECT_ROOT}/hack/gen-crd-spec
|
|
./dist/gen-crd-spec
|