Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Michał Dudziak 2023-04-04 13:51:36 +02:00
parent 053cf9c3c1
commit e55bc27237

7
Jenkinsfile vendored
View File

@ -1,5 +1,8 @@
node {
stage('Preparation') {
checkout scm
def testImage = docker.build("test-image")
testImage.inside {
stage('Preparation') {
properties([
parameters([
string(
@ -44,4 +47,6 @@ node {
stage('Save data into artifacts') {
archiveArtifacts artifacts: '*.csv', followSymlinks: false
}
}
}