ium_444417/Jenkinsfile2

25 lines
599 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',
description: 'Which build to use for copying artifacts'
)
}
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
stage("Shell Script") {
steps {
2022-03-24 21:30:24 +01:00
sh "chmod u+x ./startscript2.sh"
sh " ./startscript2.sh"
2022-03-24 21:26:43 +01:00
archiveArtifacts 'num_lines.txt'
}
}
}
}