aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorQuentin Schulz <quentin.schulz@free-electrons.com>2016-08-03 11:47:05 +0200
committerQuentin Schulz <quentin.schulz@free-electrons.com>2016-08-03 11:47:05 +0200
commit0d0e3bce942b0f0e98a060879a281a724161ba2a (patch)
tree707c5838ebc32a108dc10a43152c0dc7f6893a9b /README.md
parent58e1a9daf5a2f6703a515febc9e63457119a95ca (diff)
README: add jobs parameter
This adds --jobs parameter to lava-job-runner.py and lava-kernel-ci-job-creator.py helpers and explains its role. Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index e59b15f..f011f82 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Examples:
## Usage instructions for lava-kernel-ci-job-creator.py:
This command line tool will create LAVA boot test jobs for various architectures, and platforms.
```
-./lava-kernel-ci-job-creator.py [-h] --plans PLANS [PLANS ...] [--arch ARCH] [--targets TARGETS [TARGETS ...]] url
+./lava-kernel-ci-job-creator.py [-h] [--jobs JOBS] --plans PLANS [PLANS ...] [--arch ARCH] [--targets TARGETS [TARGETS ...]] url
```
Examples:
```
@@ -39,13 +39,13 @@ Examples:
# Create only LAVA boot test jobs for a specific build and targets.
./lava-kernel-ci-job-creator.py http://storage.kernelci.org/next/next-20150114/ --plans boot --targets mustang odroid-xu3
```
-The generated jobs can be found in the jobs directory.
+The generated jobs can be found in the jobs directory. You can override the default behaviour by passing the output directory in the `--jobs` parameter.
## Usage instructions for lava-job-runner.py:
This command line tool will submit all LAVA jobs in the current working directory.
```
-./lava-job-runner.py [-h] [--stream STREAM] [--repo REPO] [--poll POLL]
+./lava-job-runner.py [-h] [--stream STREAM] [--repo REPO] [--poll POLL] [--jobs JOBS]
```
Examples:
@@ -59,6 +59,7 @@ Examples:
# Submit and poll all LAVA jobs in the current working directory to a specific server, bundle stream. Once the results have been obtained, store the results in a JSON encoded file for use later with the dashboard reporting tool.
./lava-job-runner.py <username> <lava token> http://my.lavaserver.com/RPC2/ --stream /anonymous/mybundle/ --boot results/kernel-ci.json --lab <lab-id> --api http://api.kernelci.org --token <dashboard token>
```
+It will run jobs in the current directory. You can override the default behaviour by passing the jobs directory in the `--jobs` parameter.
## Usage instructions for lava-report.py:
This command line tool will report the results of LAVA jobs given a JSON results file.