From 749d42ef5afb58c2ac448ec3fe3a3702b30e2695 Mon Sep 17 00:00:00 2001 From: Szymon Obst Date: Tue, 24 Oct 2023 18:18:07 +0200 Subject: [PATCH] aktaualizacja jenkins --- Jenkinsfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e69de29..2b14d40 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" + } + } + } + } +} \ No newline at end of file