add checkout stage

This commit is contained in:
Sheaza 2024-03-20 14:58:46 +01:00
parent 9037135012
commit f529abac39
1 changed files with 7 additions and 2 deletions

9
Jenkinsfile vendored
View File

@ -1,9 +1,14 @@
pipeline {
agent any
stages {
stage('Stage 1') {
stage('Checkout repository') {
steps {
echo 'Hello world!'
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"
}
}
}