Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit 76d6212

Browse files
adding virtualcluster to prow
Signed-off-by: Chris Hein <[email protected]>
1 parent a4ae371 commit 76d6212

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

scripts/ci-build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
2323
source "${REPO_ROOT}/hack/ensure-go.sh"
2424

2525
cd "${REPO_ROOT}" && make binaries
26+
27+
cd "${REPO_ROOT}/virtualcluster/" && \
28+
make build

scripts/ci-make.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
2323
source "${REPO_ROOT}/hack/ensure-go.sh"
2424

2525
cd "${REPO_ROOT}" && make docker-build
26+
27+
cd "${REPO_ROOT}/virtualcluster/" && \
28+
make build-images

scripts/ci-test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ set -o nounset
1919
set -o pipefail
2020

2121
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
22-
# shellcheck source=../hack/ensure-go.sh
22+
shellcheck source=../hack/ensure-go.sh
2323
source "${REPO_ROOT}/hack/ensure-go.sh"
2424

2525
cd "${REPO_ROOT}" && \
2626
source ./scripts/fetch_ext_bins.sh && \
2727
fetch_tools && \
2828
setup_envs && \
2929
make generate lint test
30+
31+
cd "${REPO_ROOT}/virtualcluster/" && \
32+
make test

0 commit comments

Comments
 (0)