aktaualizacja jenkins

This commit is contained in:
Szymon Obst 2023-10-24 18:18:07 +02:00
parent c228a97d90
commit 749d42ef5a
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
script {
git credentialsId: 's478993', url: 'https://git.wmi.amu.edu.pl/s478993/mieszkania5.git'
// Do a ls -lart to view all the files are cloned. It will be clonned. This is just for you to be sure about it.
sh "ls -lart ./*"
// List all branches in your repo.
sh "git branch -a"
}
}
}
}
}