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 {
|
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
|
|
|
echo 'Hello world!'
|
2024-03-26 23:12:49 +01:00
|
|
|
git https://git.wmi.amu.edu.pl/s495719/ium_495719.git
|
2024-03-26 23:07:11 +01:00
|
|
|
sh './data_processing.sh'
|
|
|
|
archiveArtifacts artifacts: './*'
|
2024-03-20 14:29:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|