Merge lp:~milo/linaro-ci/bug1090416 into lp:linaro-ci
Proposed by
Milo Casagrande
Status: | Merged |
---|---|
Approved by: | James Tunnicliffe |
Approved revision: | 123 |
Merged at revision: | 128 |
Proposed branch: | lp:~milo/linaro-ci/bug1090416 |
Merge into: | lp:linaro-ci |
Diff against target: |
344 lines (+141/-122) 5 files modified
get_latest_ci_hwpack (+122/-111) jenkins_common_lib (+1/-1) jenkins_kernel_build_inst (+9/-4) jenkins_lava_job_submissions (+6/-3) jenkins_packaged_kernel_build_inst (+3/-3) |
To merge this branch: | bzr merge lp:~milo/linaro-ci/bug1090416 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
James Tunnicliffe (community) | Approve | ||
Deepti B. Kalakeri (community) | Needs Fixing | ||
Review via email:
|
Commit message
Support sending LAVA jobs to multiple boards.
Description of the change
The branch adds support for sending multiple jobs to LAVA to different boards, from the same CI job.
It introduces a new env variable: board_types.
The old one can still be used in the CI jobs, but the new one will be exported, and it will be used looping through the defined boards.
Multiple boards have to be written comma separated.
To post a comment you must log in.
283 +elif test -n "$boards" -a -n "$board_type"; then "$board_ types,$ board_type"
284 + board_types=
Typo error: elseif needs to be "elif test -n "$board_types" -a -n "$board_type"; than the above
between, I don't know why would anyone want to define board_types and board_type together in a job, instead if someone needed to define multiple board_types then they could just use board_types param or if they needed single board testing then they can use only board_type. I feel they are compliment params.