-
-
Save quinndiggity/2ff9e820cada688dd193a1e4a9b40fc4 to your computer and use it in GitHub Desktop.
Jenkins Pipeline DSL code to demonstrate git merge before build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Jenkins Pipeline DSL to demonstrate git merge before build | |
node { | |
String path = '/tmp/jenkins/upstream-repo' | |
sh "rm -rf ${path}" | |
ws(path) { | |
sh 'git --version' | |
sh 'git init' | |
sh 'touch README.md; git add README.md; git commit -m "init"' | |
sh 'git checkout -b pull-requests/1/from' | |
sh 'touch file.txt; git add file.txt; git commit -m "Add file"' | |
} | |
// sh "git clone ${path} ." | |
sh 'pwd; tree; ls;' | |
checkout([ | |
$class: 'GitSCM', | |
branches: [[name: 'refs/heads/master']], | |
userRemoteConfigs: [[ | |
name: 'origin', | |
refspec: 'pull-requests/1/from', | |
url: path | |
]], | |
extensions: [ | |
[ | |
$class: 'PreBuildMerge', | |
options: [ | |
fastForwardMode: 'NO_FF', | |
mergeRemote: 'origin', | |
mergeStrategy: 'MergeCommand.Strategy', | |
mergeTarget: 'master' | |
] | |
], | |
[ | |
$class: 'LocalBranch', | |
localBranch: 'master' | |
]] | |
]) | |
sh 'git log -n 10 --graph --pretty=oneline --abbrev-commit --all --decorate=full' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment