2021-03-28 17:41:49 +02:00
|
|
|
pipeline {
|
2021-04-11 12:37:27 +02:00
|
|
|
agent {
|
|
|
|
docker {
|
|
|
|
image kubakonieczny/ium
|
|
|
|
}
|
2021-03-28 18:33:07 +02:00
|
|
|
}
|
2021-03-28 17:41:49 +02:00
|
|
|
stages {
|
2021-04-11 12:37:27 +02:00
|
|
|
stage('docker') {
|
2021-03-28 17:41:49 +02:00
|
|
|
steps {
|
2021-04-11 12:37:27 +02:00
|
|
|
sh '''
|
|
|
|
./script.sh >> stats.txt
|
|
|
|
'''
|
2021-03-28 17:41:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('archive artifacts') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts 'stats.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|