1
0
Fork 0

ci_presubmit: don't rely on tools/install.sh and hscloud_root

Let's make things simpler and just build/run stuff that we deem
critical.

Change-Id: I356efaac4c8af276aaaa0a141a70f35da19c6957
Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1166
Reviewed-by: q3k <q3k@hackerspace.pl>
master
q3k 2021-10-16 18:58:30 +00:00 committed by q3k
parent f1dc4d87d8
commit f3e6f8f3d7
1 changed files with 6 additions and 13 deletions

View File

@ -6,19 +6,12 @@
set -e -o pipefail
if [ -z "$hscloud_root" ]; then
echo 2>&1 "Please first source env.sh"
exit 1
fi
# Build some things that should always build - ie. critical codebases.
bazel build //tools/... //cluster/...
cd $hscloud_root
# Test critical tools.
tools/install.sh
kubectl version --client=true
kubecfg version
prodaccess --help 2>/dev/null
# Run some critical tools that are needed to access clusters.
bazel run //cluster/clustercfg smoketest
bazel run //cluster/tools:kubectl -- version --client=true
bazel run //cluster/tools:kubecfg -- version
bazel run //cluster/prodaccess -- --help 2>/dev/null
# Test critical services.
bazel build //cluster/prodvider