This commit is contained in:
s495716 2024-03-29 18:44:34 +01:00
parent bdbc0e0638
commit f22d63c43f

3
stats/Jenkinsfile vendored
View File

@ -2,6 +2,7 @@ pipeline {
agent {
docker {
image 'jvncziii/ium:latest'
label 'dockerContainer'
}
}
parameters {
@ -12,6 +13,7 @@ pipeline {
)
}
stages {
node("dockerContainer") {
stage('Dataset statistics') {
steps {
copyArtifacts filter:'train.csv', fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR')
@ -21,4 +23,5 @@ pipeline {
}
}
}
}
}