replaced to just echo's
This commit is contained in:
parent
2f51094b11
commit
1988ed4362
1 changed files with 14 additions and 8 deletions
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
|
@ -1,14 +1,20 @@
|
|||
pipeline {
|
||||
agent none
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Build') {
|
||||
agent {
|
||||
docker {
|
||||
//image 'python:2-alpine'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
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