aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2017-06-21 15:18:24 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2017-06-21 15:18:24 -0400
commitf18cb02617f009bb3aee46a6c51b52573c939114 (patch)
tree1106b714322bde92bfe0b851488b83e80373d384
parentcc65808538723e7f407ab3f17767528da4c33ea2 (diff)
downloadhello_world-f18cb02617f009bb3aee46a6c51b52573c939114.tar.gz
test
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 5175c6e..7969b8f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,13 +5,13 @@ pipeline {
stage('Build') {
steps {
echo 'Building..'
- python setup.py install
+ sh 'python setup.py install'
}
}
stage('Test') {
steps {
echo 'Testing..'
- test -f setup.py
+ sh 'test -f setup.py'
}
}
stage('Deploy') {