replaced to just echo's

This commit is contained in:
DaWilliam 2018-03-03 23:56:37 -05:00 committed by GitHub
parent 2f51094b11
commit 1988ed4362
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
Jenkinsfile vendored
View file

@ -1,14 +1,20 @@
pipeline { pipeline {
agent none agent any
stages { stages {
stage('Build') { stage('Build') {
agent {
docker {
//image 'python:2-alpine'
}
}
steps { steps {
//sh 'python -m py_compile sources/add2vals.py sources/calc.py' echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
} }
} }
} }