diff options
| author | sickcodes <[email protected]> | 2022-03-11 04:08:26 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-03-11 04:08:26 +0000 |
| commit | 43a4c0b0d980b6be3fd37f27b676bf266443a7e1 (patch) | |
| tree | 48860bf699f3d8e840fff775c6c0ae5b84eb40ec /tests | |
| parent | Merge pull request #452 from dulatello08/patch-1 (diff) | |
| download | docker-osx-43a4c0b0d980b6be3fd37f27b676bf266443a7e1.tar.xz docker-osx-43a4c0b0d980b6be3fd37f27b676bf266443a7e1.zip | |
Add warning to test.sh that it's for internal use only
Add warning to test.sh that it's for internal use only
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test.sh b/tests/test.sh index 84ec774..9a98a55 100644 --- a/tests/test.sh +++ b/tests/test.sh @@ -125,6 +125,12 @@ TEST_BUILDS=( 'docker-osx:auto' ) +TEST_BUILDS=( + 'docker-osx:naked' + 'docker-osx:naked-auto' + 'docker-osx:auto' +) + VERSION_BUILDS=( 'high-sierra' 'mojave' @@ -133,6 +139,20 @@ VERSION_BUILDS=( 'monterey' ) +warning () { + clear + for j in {15..1}; do + echo "############# WARNING: THIS SCRIPT IS NOT INTENDED FOR USE BY ################" + echo "############# IT IS USED BY THE PROJECT TO BUILD AND PUSH TO DOCKERHUB #######" + echo "" + echo " Press Ctrl C to stop. " + MAX_COLS=$((${COLUMNS}/2)) + printf "$j %.0s" {1..20} + echo + sleep 1 + done +} + install_docker () { apt remove docker docker-engine docker.io containerd runc -y \ ; apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y \ @@ -270,6 +290,7 @@ EOF systemctl enable --now docker } +warning tee -a ~/.bashrc <<EOF export DEBIAN_FRONTEND=noninteractive export TZ=UTC |