
Added check for availability all jobs from layout in jjb Change-Id: I3e47bff5fe56bdc40712dcee33f609ee8b481d23
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir out
|
|
jenkins-jobs test -o out/ $WORKSPACE/jenkins_job_builder/
|
|
|
|
|
|
find out/ -printf "%f\n" > job-list.txt
|
|
|
|
python $WORKSPACE/host-scripts/check_layout.py $WORKSPACE/config/zuul/layout.yaml job-list.txt
|