Skip to content

Commit 68eae39

Browse files
Create Jenkins_file
1 parent edc70ea commit 68eae39

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Jenkins_file

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('git clone') {
5+
steps {
6+
git branch: 'master', url: "https://github.com/sectool/Python-Random-Password-Generator.git"
7+
sh "ls -ll"
8+
}
9+
}
10+
11+
stage('Generate Password') {
12+
steps {
13+
sh "python3 run.py"
14+
}
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)