mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
10 lines
162 B
Text
10 lines
162 B
Text
|
#!/usr/bin/env bash
|
||
|
# Entrypoint for jenkins experimental CI
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
export DOCKER_EXPERIMENTAL=y
|
||
|
|
||
|
hack/make.sh \
|
||
|
binary-daemon \
|
||
|
test-integration
|