Skip to content

Commit ce5174d

Browse files
committed
Adding jenkins job for maintainer tool
Signed-off-by: Deepali Kasture <[email protected]>
1 parent 4d81054 commit ce5174d

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

ceph-maintainer-tool/build/build

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
cat > maintainer-tool.py
4+
mkdir maintainer-tool
5+
cd maintainer-tool
6+
git clone [email protected]:deepalik21/ceph-maintainer-tool.git
7+
cd ceph-maintainer-tool
8+
cp maintainer-tool.py ../../maintainer-tool.py
9+
rm -rf .git*
10+
cd ..
11+
rmdir -r ceph-maintainer-tool
12+
cd ..
13+
rmdir maintainer-tool
14+
python maintainer-tool.py src/pybind/mgr/
15+
rm maintainer-tool.py
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
- job:
2+
name: ceph-maintainer-tool
3+
project-type: freestyle
4+
defaults: global
5+
display-name: 'ceph-maintainer-tool'
6+
block-downstream: false
7+
block-upstream: false
8+
scm:
9+
- git:
10+
url: [email protected]:ceph/ceph.git
11+
basedir: ceph
12+
credentials-id: 'jenkins-build'
13+
branches:
14+
- $CONTAINER_BRANCH
15+
skip-tag: true
16+
wipe-workspace: true
17+
builders:
18+
- shell:
19+
echo "You are inspecting Ceph repo under path src/pybind/mgr/"
20+
!include-raw:
21+
- ../../build/build

0 commit comments

Comments
 (0)