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