Add a new entrypoint for CI

Signed-off-by: Daniel Nephin <dnephin@docker.com>
Upstream-commit: dbf580be57a4bb854d7ce20d313e3a22ea337be5
Component: engine
This commit is contained in:
Daniel Nephin
2017-09-20 17:26:30 -04:00
parent d9942eee10
commit e55d5634bf
11 changed files with 46 additions and 22 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Entrypoint for jenkins arm CI build
set -eu -o pipefail
hack/test/unit
hack/make.sh \
binary-daemon \
dynbinary \
test-integration
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Entrypoint for jenkins experimental CI
set -eu -o pipefail
export DOCKER_EXPERIMENTAL=y
hack/make.sh \
binary-daemon \
test-integration
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Entrypoint for jenkins janky CI build
set -eu -o pipefail
hack/validate/default
hack/test/unit
hack/make.sh \
binary-daemon \
dynbinary \
test-integration \
test-docker-py \
cross
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Entrypoint for jenkins powerpc CI build
set -eu -o pipefail
hack/test/unit
hack/make.sh dynbinary test-integration
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Entrypoint for jenkins s390x (z) CI build
set -eu -o pipefail
hack/test/unit
hack/make.sh dynbinary test-integration
-2
View File
@@ -59,12 +59,10 @@ DEFAULT_BUNDLES=(
binary-daemon
dynbinary
test-unit
test-integration
test-docker-py
cross
tgz
)
VERSION=${VERSION:-$(< ./VERSION)}
-6
View File
@@ -1,6 +0,0 @@
#!/usr/bin/env bash
set -e
echo "DEPRECATED: use hack/test/unit instead of hack/make.sh test-unit" >&2
$SCRIPTDIR/test/unit 2>&1 | tee -a "$DEST/test.log"
-2
View File
@@ -1,2 +0,0 @@
#!/usr/bin/env bash
echo "tgz is deprecated"