mirror of
https://github.com/moby/moby.git
synced 2026-07-06 22:58:25 +00:00
10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Entrypoint for jenkins experimental CI
|
|
set -eu -o pipefail
|
|
|
|
export DOCKER_EXPERIMENTAL=1
|
|
|
|
hack/make.sh \
|
|
binary-daemon \
|
|
test-integration
|