Skip to content

Commit 0b6cbe4

Browse files
authored
Merge pull request #1 from pavleen14/enable_jenkins
Enable jenkins
2 parents ffa782d + 4d76966 commit 0b6cbe4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Jenkinsfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Jenkinsfile (Declarative Pipeline)
2+
/* Requires the Docker Pipeline plugin */
3+
pipeline {
4+
agent { docker { image 'python:3.10.7-alpine' } }
5+
stages {
6+
stage('build') {
7+
steps {
8+
sh 'python --version'
9+
}
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)