replaced to just echo's
This commit is contained in:
parent
2f51094b11
commit
1988ed4362
1 changed files with 14 additions and 8 deletions
20
Jenkinsfile
vendored
20
Jenkinsfile
vendored
|
@ -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....'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue