Skip to content

Commit 93135b8

Browse files
authored
Create Jenkinsfile
1 parent 464a292 commit 93135b8

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pipeline {
2+
agent any
3+
4+
stages {
5+
stage('Checkout') {
6+
steps {
7+
git 'https://github.com/paulphilip/pythoncode.git'
8+
}
9+
}
10+
11+
stage('Run Python Script') {
12+
steps {
13+
sh 'python3 test.py'
14+
}
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)