ium_478841/Jenkinsfile
2022-03-21 11:07:56 +01:00

15 lines
470 B
Groovy

node {
stage('checkout: Check out from version control') {
git clone https://git.wmi.amu.edu.pl/s478841/ium_478841.git
}
stage('sh: Shell Script') {
//Wywołaj w konsoli komendę "figlet", która generuje ASCI-art
//sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
sh "./load_data.sh | tee output.txt"
}
stage('Goodbye') {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}