Skip to content

Instantly share code, notes, and snippets.

View yego87's full-sized avatar
🎯
Focusing

Yegor Veselov yego87

🎯
Focusing
View GitHub Profile
@lferro9000
lferro9000 / Jenkinsfile
Created July 30, 2017 09:59
Jenkinsfile with PHP pipeline for Jenkins 2
#!/usr/bin/env groovy
node('php') {
stage('Get code from SCM') {
checkout(
[$class: 'GitSCM', branches: [[name: '*/#your-dev-branch#']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],