Back to original stuff

This commit is contained in:
DaWilliam 2018-03-04 00:04:21 -05:00 committed by GitHub
parent 1988ed4362
commit 14aba6cb17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
Jenkinsfile vendored
View file

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