ium_495719/Jenkinsfile

25 lines
566 B
Plaintext
Raw Normal View History

2024-03-20 14:29:43 +01:00
pipeline {
agent any
2024-03-20 15:12:02 +01:00
2024-03-20 14:29:43 +01:00
stages {
2024-03-27 01:48:16 +01:00
stage('Git') {
2024-03-20 14:29:43 +01:00
steps {
2024-03-27 01:33:18 +01:00
git(
url: "https://git.wmi.amu.edu.pl/s495719/ium_495719.git",
branch: "main"
)
2024-03-27 01:48:16 +01:00
}
}
stage('Shell') {
steps {
2024-03-27 01:38:37 +01:00
sh 'chmod 777 ./data_processing.sh'
2024-03-27 01:35:29 +01:00
sh './data_processing.sh'
2024-03-27 01:48:16 +01:00
}
}
stage('Artifacts') {
steps {
2024-03-27 01:42:33 +01:00
archiveArtifacts artifacts: 'processed_data.txt'
2024-03-20 14:29:43 +01:00
}
}
}
}