ium_444417/Jenkinsfile2

32 lines
835 B
Plaintext
Raw Normal View History

2022-03-24 21:26:43 +01:00
pipeline {
agent any
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
name: 's444417-create-dataset',
2022-03-24 21:47:58 +01:00
description: 'Build selector for Copy artifact'
2022-03-24 21:26:43 +01:00
)
}
2022-03-24 21:47:58 +01:00
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
}
2022-03-24 21:26:43 +01:00
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
2022-03-24 21:54:06 +01:00
stage("Shell Script") {
steps {
copyArtifacts(
fingerprintArtifacts: true,
projectName: 's444417-create-dataset',
selector: buildParameter('BUILD_SELECTOR')
)
sh "chmod u+x ./startscript2.sh"
sh " ./startscript2.sh"
archiveArtifacts 'num_lines.txt'
2022-03-24 21:26:43 +01:00
}
2022-03-24 21:54:06 +01:00
}
2022-03-24 21:26:43 +01:00
}