Back to original stuff
This commit is contained in:
parent
1988ed4362
commit
14aba6cb17
1 changed files with 7 additions and 13 deletions
20
Jenkinsfile
vendored
20
Jenkinsfile
vendored
|
@ -1,20 +1,14 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
agent none
|
||||
stages {
|
||||
stage('Build') {
|
||||
agent {
|
||||
docker {
|
||||
image 'python:2-alpine'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
echo 'Building..'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo 'Testing..'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying....'
|
||||
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue