Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
a429ea870e
commit
8d63ba5959
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
@ -5,13 +5,19 @@ node {
|
|||||||
checkout scm
|
checkout scm
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build image') {
|
agent { docker { image 'python:3.9.0' } }
|
||||||
app = docker.build("hellonode")
|
stages {
|
||||||
|
stage('build') {
|
||||||
|
steps {
|
||||||
|
sh 'python --version'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Test image') {
|
stage('Test image') {
|
||||||
app.inside {
|
app.inside {
|
||||||
sh 'echo "Tests passed"'
|
sh 'echo "Passed"'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user