Merge pull request #105169 from liggitt/gomodule-codegenerator

Smoke test code-generator using full packages
This commit is contained in:
Kubernetes Prow Robot 2021-09-21 14:08:41 -07:00 committed by GitHub
commit 7432904c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,9 @@ fi
# smoke test
echo "Smoke testing examples by compiling..."
go build "./${SCRIPT_ROOT}/examples/crd/..."
go build "./${SCRIPT_ROOT}/examples/apiserver/..."
go build "./${SCRIPT_ROOT}/examples/MixedCase/..."
go build "./${SCRIPT_ROOT}/examples/HyphenGroup/..."
pushd "./${SCRIPT_ROOT}/examples"
go build "k8s.io/code-generator/examples/crd/..."
go build "k8s.io/code-generator/examples/apiserver/..."
go build "k8s.io/code-generator/examples/MixedCase/..."
go build "k8s.io/code-generator/examples/HyphenGroup/..."
popd