Merge pull request #15 from Roblox/warning

Warn if running tests on local host.
This commit is contained in:
Shishir 2020-07-08 12:14:34 -07:00 committed by GitHub
commit 66b9e629ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -euo pipefail
set -eo pipefail
export NOMAD_VERSION=0.11.2
export CONTAINERD_VERSION=1.3.4
@ -18,6 +18,7 @@ PASS_STATUS=0
# Please don't run these tests (./run_tests.sh) on your local host, as these are meant to be
# destructive and can modify (or destroy) software on your host system.
main() {
warn_on_local_host
setup
echo "INFO: Checking if nomad-driver-containerd is up and running, and nomad is ready to accept jobs."
is_containerd_driver_active
@ -52,6 +53,20 @@ run_tests() {
done
}
warn_on_local_host() {
if [[ -z "$CIRCLECI" || "$CIRCLECI" != "true" ]]; then
echo "WARNING: Local host detected."
echo "WARNING: These tests are designed to be run as part of continous integration (CI) and not recommended to be run on local host."
echo "WARNING: These tests are destructive and can modify (or destroy) software on your host system."
read -p "Do you still want to run the tests (Y/N)? " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Right choice! Aborting..."
exit 0
fi
fi
}
setup() {
sudo systemctl stop apt-daily-upgrade apt-daily >/dev/null 2>&1