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