add checkout stage
This commit is contained in:
parent
9037135012
commit
f529abac39
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user