Jenkins pipeline #123

Merged
bartosz merged 17 commits from bartosz/feature/pipeline into master 2023-03-18 08:31:14 +01:00
Showing only changes of commit a57a32ef44 - Show all commits

13
Jenkinsfile vendored
View File

@@ -14,9 +14,20 @@ pipeline {
}
stage('Checkout') {
steps {
checkout([$class: 'GitSCM', branches: [[name: 'master']], extensions: [], userRemoteConfigs: [[credentialsId: 'tools-deploy-key', url: '_gitea@gitea.release11.com:R11/release11-tools.git']]])
checkout([
$class: 'GitSCM',
branches: [[name: 'master']],
extensions: [],
userRemoteConfigs: [[credentialsId: 'tools-deploy-key', url: '_gitea@gitea.release11.com:R11/release11-tools.git']]
])
}
}
stage('Run Ansible playbook') {
sh '''
pwd
ls
'''
}
}
}