ium_478841/Jenkinsfile

15 lines
470 B
Plaintext
Raw Normal View History

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