2014-08-14 22:26:27 +04:00
|
|
|
mozplatformqa-jenkins-config
|
|
|
|
============================
|
|
|
|
|
|
|
|
Configuration files for jenkins configuration
|
2015-09-04 06:08:46 +03:00
|
|
|
|
|
|
|
Regenerating jobs
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
WebRTC and MSE Web Platform jobs are autogenerated. You need to install python-jenkins first:
|
|
|
|
|
|
|
|
<code>
|
|
|
|
pip install python-jenkins
|
|
|
|
</code>
|
|
|
|
|
|
|
|
Then, you can regenerate the jobs:
|
|
|
|
|
|
|
|
<code>
|
|
|
|
python generate_webrtc_jobs.py --template=webrtc-job-template.xml --table-csv=WebRTC_Test_Matrix.csv --jenkins-host=http://pf-jenkins.qa.mtv2.mozilla.com:8080
|
|
|
|
python generate_mse_jobs.py --template=mse-web-platform-job-template.xml --table-csv=MSE_Web_Platform_Test_Matrix.csv --jenkins-host=http://pf-jenkins.qa.mtv2.mozilla.com:8080
|
|
|
|
</code>
|
|
|
|
|
|
|
|
You should then enable the jobs:
|
|
|
|
|
|
|
|
<code>
|
|
|
|
python enable_jobs.py --regexp "^webrtc-.*$" --jenkins-host http://pf-jenkins.qa.mtv2.mozilla.com:8080
|
|
|
|
python enable_jobs.py --regexp "^mse-web-platform.*$" --jenkins-host http://pf-jenkins.qa.mtv2.mozilla.com:8080
|
|
|
|
</code>
|
|
|
|
|
|
|
|
Note: You should be careful when running this, as it could seriously mess up the running Jenkins instance.
|