IUM_s464980/Jenkinsfile

15 lines
444 B
Plaintext
Raw Normal View History

2024-03-20 14:29:57 +01:00
pipeline {
agent any
stages {
2024-03-20 14:58:46 +01:00
stage('Checkout repository') {
2024-03-20 14:29:57 +01:00
steps {
2024-03-20 14:58:46 +01:00
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"
2024-03-20 14:29:57 +01:00
}
}
}
}