Skip to content

Commit

Permalink
time some things
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTheElder committed Jun 19, 2020
1 parent e67d530 commit c2da722
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions hack/ci/e2e-k8s.sh
Expand Up @@ -250,7 +250,7 @@ main() {
# build
#fi
echo "WARNING: building without bazel due to CI breakage / ignoring BUILD_TYPE"
build
time build

# in CI attempt to release some memory after building
if [ -n "${KUBETEST_IN_DOCKER:-}" ]; then
Expand All @@ -260,8 +260,8 @@ main() {

# create the cluster and run tests
res=0
create_cluster || res=$?
run_tests || res=$?
time create_cluster || res=$?
time run_tests || res=$?
cleanup || res=$?
exit $res
}
Expand Down
2 changes: 1 addition & 1 deletion hack/ci/e2e.sh
Expand Up @@ -40,7 +40,7 @@ main() {
trap cleanup INT TERM EXIT

# install kind
install_kind
time install_kind

# build kubernetes / e2e test
"${REPO_ROOT}/hack/ci/e2e-k8s.sh"
Expand Down

0 comments on commit c2da722

Please sign in to comment.