summaryrefslogtreecommitdiff
path: root/tests.build/only-build-systems.stderr
Commit message (Collapse)AuthorAgeFilesLines
* Implement partial buildsAdam Coldrick2015-04-011-2/+2
| | | | | | | | | | | | | | | | | | This commit allows you to build only a single chunk or stratum and its dependencies, instead of a whole system. This will be useful for developers who want to quickly check the build commands of a chunk for example. You can give more than one chunk or stratum to the command, and the build will run up to the latest one, building the dependencies of both. An example of the usage: morph build systems/devel-system-x86_64-generic.morph \ strata/build-essential.morph strata/core/curl.morph This will only build up to curl in the core stratum. Change-Id: Id55b8335fc61e8fdf847f5e383cfedd13d07e6d2
* Only build systems againSam Thursfield2013-03-141-0/+2
| | | | | We can no longer build strata individually because we don't know what architecture they are for.
* Allow building strata with 'morph build-morphology' againSam Thursfield2013-02-221-2/+0
| | | | This is mainly to fix bootstrap.
* buildcommand: Refuse to build chunks or strata out of contextSam Thursfield2013-02-201-0/+2
Building invididual chunks is bad because we have no idea what build mode to use. Building individual strata would work, but all of the stratum's build dependencies would need to be built first so there would be little time saved in any case. There is also no way to test them beyond checking that the build was successful.