~linaro-automation/linaro-android-build-tools/trunk

« back to all changes in this revision

Viewing changes to utils/query-jobs/README

  • Committer: Paul Sokolovsky
  • Date: 2013-12-10 17:07:20 UTC
  • Revision ID: paul.sokolovsky@linaro.org-20131210170720-vwx83ujrxk2itejn
Most of utils migrated to https://git.linaro.org/infrastructure/linaro-jenkins-tools.git

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This is a script to query Jenkins job configs, on the level of raw XML files.
2
 
 
3
 
Run ./query-jobs --help for list of optoins.
4
 
 
5
 
 
6
 
Example usage:
7
 
 
8
 
./query-jobs //hudson.triggers.TimerTrigger --filter
9
 
 
10
 
    List all regularly repeating jobs.
11
 
 
12
 
./query-jobs "disabled='false' and //hudson.triggers.TimerTrigger" --filter
13
 
 
14
 
    List all regularly repeating jobs, taking into account that some of them may be
15
 
    disabled.
16
 
 
17
 
./query-jobs //hudson.triggers.TimerTrigger/spec --filter -v
18
 
 
19
 
    List crontab specs for all regularly repeating jobs.
20
 
 
21
 
./query-jobs //daysToKeep --filter-not --filter-jobname='-(release|toolchain)'
22
 
 
23
 
    List daily (not toolchain and not release) jobs which don't have build
24
 
    expriation configured (i.e. would use up disk space without limit).
25