From 788b31a122c3823d5e756524187975a2ad14cac6 Mon Sep 17 00:00:00 2001 From: Loys Ollivier Date: Wed, 3 Jan 2018 14:53:55 +0100 Subject: utils: change the url / build behavior scheme This is the first patch of the serie to differentiate builds and urls. As of now we were using the --url option to specify a build-type. Add a new option --build-type which specifies which type of build it is. From this build-type if no url is specified, the url can be defaulted by a configuration file. This configuration file is specific per user, e.g. AGL, others... Change-Id: I9ce801a7518b78ee859c6c3bbcad3a89e884e832 Signed-off-by: Loys Ollivier --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5c0c8fd..dd978c9 100644 --- a/README.md +++ b/README.md @@ -86,13 +86,14 @@ _Examples:_ ```bash ./utils/create-jobs.py --machine m3ulcb ./utils/create-jobs.py --machine qemux86-64 -./utils/create-jobs.py --url release --branch eel --version 4.99.1 --machine m3ulcb -./utils/create-jobs.py --url release --branch eel --version 4.99.1 --machine qemux86-64 -./utils/create-jobs.py --url daily --branch master --version latest --machine m3ulcb -./utils/create-jobs.py --url daily --branch master --version latest --machine raspberrypi3 -./utils/create-jobs.py --url ci --changeid 11533 --patchset 2 --machine raspberrypi3 -./utils/create-jobs.py --url ci --changeid 11533 --patchset 2 --machine m3ulcb +./utils/create-jobs.py --build-type release --branch eel --version 4.99.1 --machine m3ulcb +./utils/create-jobs.py --build-type release --branch eel --version 4.99.1 --machine qemux86-64 +./utils/create-jobs.py --build-type daily --branch master --version latest --machine m3ulcb +./utils/create-jobs.py --build-type daily --branch master --version latest --machine raspberrypi3 +./utils/create-jobs.py --build-type ci --changeid 13079 --patchset 1 --machine raspberrypi3 +./utils/create-jobs.py --build-type ci --changeid 13079 --patchset 1 --machine m3ulcb ./utils/create-jobs.py --url http://baylibre.com/pub/agl/ci/raspberrypi3 --machine raspberrypi3 +./utils/create-jobs.py --url http://baylibre.com/pub/agl/ci/raspberrypi3 --build-type release --machine raspberrypi3 ``` The full list of arguments with default values is available using the helper:\ `$ ./utils/create-jobs.py --help` -- cgit 1.2.3-korg