-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding jenkins config file for maintainer-tool
Signed-off-by: Deepali Kasture <[email protected]>
- Loading branch information
1 parent
6461f5e
commit 80293e4
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
ceph-maintainer-tool/config/definitions/ceph-maintainer-tool.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
- scm: | ||
name: maintainer-tool | ||
scm: | ||
- git: | ||
url: https://github.com/deepalik21/ceph-maintainer-tool.git | ||
branches: | ||
- origin/main | ||
browser: auto | ||
timeout: 20 | ||
basedir: "ceph-maintainer-tool" | ||
wipe-workspace: false | ||
|
||
- scm: | ||
name: ceph | ||
scm: | ||
- git: | ||
url: https://github.com/ceph/ceph.git | ||
timeout: 20 | ||
wipe-workspace: false | ||
basedir: "ceph" | ||
branches: | ||
- origin/main | ||
|
||
|
||
- job: | ||
name: ceph-maintainer-tool | ||
description: Ceph maintainer tool | ||
project-type: freestyle | ||
block-downstream: false | ||
block-upstream: false | ||
defaults: global | ||
display-name: 'ceph-maintainer-tool' | ||
|
||
triggers: | ||
# run every saturday at noon | ||
- timed: "0 12 * * 6" | ||
|
||
scm: | ||
- maintainer-tool | ||
- ceph | ||
|
||
builders: | ||
- shell: | ||
!include-raw: | ||
- ../../../scripts/build_utils.sh | ||
- ../../build/build |