2022-04-02 22:21:12 +02:00
|
|
|
pipeline {
|
2022-04-02 22:36:41 +02:00
|
|
|
agent any
|
2022-04-02 22:21:12 +02:00
|
|
|
stages {
|
2022-04-02 22:33:16 +02:00
|
|
|
stage('Get arifacts') {
|
2022-04-02 22:21:12 +02:00
|
|
|
steps {
|
2022-04-02 22:33:16 +02:00
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444507_create_dataset_image', selector: lastSuccessful()
|
2022-04-02 22:21:12 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-02 22:33:16 +02:00
|
|
|
stage('Show stats') {
|
|
|
|
steps {
|
2022-04-02 22:36:41 +02:00
|
|
|
sh " docker image ls"
|
2022-04-02 22:33:16 +02:00
|
|
|
sh "./stats-docker.sh"
|
|
|
|
}
|
2022-04-02 22:21:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|