Skip to content

Commit 5c2fc72

Browse files
committed
Added pipeline
1 parent f17e64e commit 5c2fc72

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Jenkinsfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pipeline {
2+
agent {
3+
docker {
4+
image 'python'
5+
}
6+
7+
}
8+
stages {
9+
stage('') {
10+
steps {
11+
sh '''pip install django
12+
cd sms_survey
13+
./manage.py test'''
14+
}
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)