From 83a1af037542f58985b98e6e59c98eb9e6746019 Mon Sep 17 00:00:00 2001 From: Chris Hein Date: Fri, 21 May 2021 17:55:14 -0700 Subject: [PATCH] adding virtualcluster to prow Signed-off-by: Chris Hein --- scripts/ci-build.sh | 3 +++ scripts/ci-make.sh | 3 +++ scripts/ci-test.sh | 3 +++ 3 files changed, 9 insertions(+) diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index 772899e3..b61fc35e 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -23,3 +23,6 @@ REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. source "${REPO_ROOT}/hack/ensure-go.sh" cd "${REPO_ROOT}" && make binaries + +cd "${REPO_ROOT}/virtualcluster/" && \ + make build diff --git a/scripts/ci-make.sh b/scripts/ci-make.sh index 4c597aba..1651e5fc 100755 --- a/scripts/ci-make.sh +++ b/scripts/ci-make.sh @@ -23,3 +23,6 @@ REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. source "${REPO_ROOT}/hack/ensure-go.sh" cd "${REPO_ROOT}" && make docker-build + +cd "${REPO_ROOT}/virtualcluster/" && \ + make build-images diff --git a/scripts/ci-test.sh b/scripts/ci-test.sh index c8f3933f..6d8da4c0 100755 --- a/scripts/ci-test.sh +++ b/scripts/ci-test.sh @@ -27,3 +27,6 @@ cd "${REPO_ROOT}" && \ fetch_tools && \ setup_envs && \ make generate lint test + +cd "${REPO_ROOT}/virtualcluster/" && \ + make test \ No newline at end of file