IUM_s464980/Jenkinsfile
2024-03-20 14:58:46 +01:00

15 lines
444 B
Groovy

pipeline {
agent any
stages {
stage('Checkout repository') {
steps {
checkout scmGit(branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's464980_token', url: 'https://git.wmi.amu.edu.pl/s464980/IUM_s464980.git']])
}
}
stage('Download and process data') {
steps {
echo "Hello"
}
}
}
}