ium_452627/Jenkinsfile
2023-03-28 13:14:18 +02:00

30 lines
724 B
Groovy

pipeline {
agent any
//Definijuemy parametry, ktore bedzie mozna podac podczas wywolywania zadania
parameters {
string (
name: 'INPUT_TEXT',
defaultValue: 'Hello World!',
description: 'Tekst, ktorym chcesz przywitac swiat',
trim: false
)
}
stages {
stage('Run Script') {
steps {
script {
sh "chmod +x -R ${env.WORKSPACE}"
sh './take_data.sh | tee output.txt'
}
}
}
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}
}
}