Update Jenkinsfile

This commit is contained in:
Nana Janashia
2021-03-21 08:40:58 +00:00
parent b10e682c11
commit 94609f4347

9
Jenkinsfile vendored
View File

@@ -1,5 +1,14 @@
#!/usr/bin/env groovy
// Reference the GitLab connection name from your Jenkins Global configuration (https://JENKINS_URL/configure, GitLab section)
properties([gitLabConnection('your-gitlab-connection-name')])
node {
checkout scm // Jenkins will clone the appropriate git branch, no env vars needed
// Further build steps happen here
}
pipeline {
agent any
stages {