1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/hack/make
unclejack 22152ccc47 cli integration: fix wait race
The wait at the end of cli integration script could end up failing if
the process had already exited. This was making it look like the tests
have failed.

This change fixes the problem.

Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
2014-04-04 19:06:55 +03:00
..
binary Small tweaks to the hack scripts to make them simpler 2014-03-29 23:09:45 +02:00
cover Add new cover bundlescript for giving a nice report across all the coverprofiles generated by the test scripts 2013-12-13 11:59:54 -07:00
cross Fix dynbinary so that dockerinit can still be properly static even if it has to link against libapparmor for Ubuntu 2014-03-06 19:55:22 -07:00
dynbinary Fix a lot of the sha256 and md5 stuff to be more DRY and extendible, and on more things (specifically, the tgz files too) 2014-03-19 22:25:09 -06:00
dyntest Fix dynbinary so that dockerinit can still be properly static even if it has to link against libapparmor for Ubuntu 2014-03-06 19:55:22 -07:00
dyntest-integration Fix dynbinary so that dockerinit can still be properly static even if it has to link against libapparmor for Ubuntu 2014-03-06 19:55:22 -07:00
README.md Break down hack/make.sh into small scripts, one per 'bundle': test, binary, ubuntu etc. 2013-09-09 18:45:40 -07:00
test Fix dynbinary so that dockerinit can still be properly static even if it has to link against libapparmor for Ubuntu 2014-03-06 19:55:22 -07:00
test-integration Fix dynbinary so that dockerinit can still be properly static even if it has to link against libapparmor for Ubuntu 2014-03-06 19:55:22 -07:00
test-integration-cli cli integration: fix wait race 2014-04-04 19:06:55 +03:00
tgz Fix a lot of the sha256 and md5 stuff to be more DRY and extendible, and on more things (specifically, the tgz files too) 2014-03-19 22:25:09 -06:00
ubuntu Include contributed completions in ubuntu PPA 2014-03-26 11:23:26 -04:00

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