moby--moby/hack/make
Vincent Batts 7617ec176d .: remove trailing white spaces
blame tibor this one ;-)
```
find . -type f -not -name '*.png' -not -name '*.go' -not -name '*.md'
-not -name '*.tar' -not -name '*.pem' -not -path './vendor/*' -not -path
'./.git/*' -not -path '*/testdata/*' -not -path './docs/*images*' -not
-path '*/testfiles/*' -not -path './bundles/*' -not -path
'./docs/*static*/*' -not -path './docs/*article-img/*' -exec grep -HnEl
'[[:space:]]$' {} \; | xargs sed -iE 's/[[:space:]]*$//'
```

Signed-off-by: Vincent Batts <vbatts@redhat.com>
2015-03-25 13:38:17 -04:00
..
.dockerinit Fix several very minor consistency issues 2015-03-17 23:01:40 -06:00
.dockerinit-gccgo Fix several very minor consistency issues 2015-03-17 23:01:40 -06:00
.ensure-emptyfs Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
.ensure-frozen-images Enforce our use of the explicitly frozen images 2015-03-16 14:42:59 -06:00
.ensure-httpserver Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
.go-autogen Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
.go-compile-test-dir Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
.integration-daemon-start Fix several very minor consistency issues 2015-03-17 23:01:40 -06:00
.integration-daemon-stop Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
.validate .: remove trailing white spaces 2015-03-25 13:38:17 -04:00
README.md Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
binary Fix several very minor consistency issues 2015-03-17 23:01:40 -06:00
cover Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
cross Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
dynbinary .: remove trailing white spaces 2015-03-25 13:38:17 -04:00
dyngccgo .: remove trailing white spaces 2015-03-25 13:38:17 -04:00
gccgo Fix several very minor consistency issues 2015-03-17 23:01:40 -06:00
test-docker-py Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
test-integration Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
test-integration-cli Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
test-unit Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
tgz .: remove trailing white spaces 2015-03-25 13:38:17 -04:00
ubuntu Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
validate-dco Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
validate-gofmt Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00
validate-toml Move scripts back to hack/, leave docs in project/ 2015-03-13 14:04:08 -06:00

README.md

This directory holds scripts called by make.sh in the parent directory.

Each script is named after the bundle it creates. They should not be called directly - instead, pass it as argument to make.sh, for example:

./hack/make.sh test
./hack/make.sh binary ubuntu

# Or to run all bundles:
./hack/make.sh

To add a bundle:

  • Create a shell-compatible file here
  • Add it to $DEFAULT_BUNDLES in make.sh