8000 Feature/branch docker images by m0ppers · Pull Request #3269 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/branch docker images #3269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Sep 19, 2017
Prev Previous commit
Next Next commit
;
  • Loading branch information
Andreas Streichardt committed Sep 15, 2017
commit f197828bac3a583bdc9727b8d70c906fbaf3a09a
4 changes: 2 additions & 2 deletions Installation/Pipeline/Jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ def createDockerImage(edition, maintainer, stageName) {
if (buildStepCheck(os, edition, maintainer)) {
node(buildJenkins[os]) {
stage(stageName) {
checkoutSource(edition);
checkoutSource(edition)

def package = "${edition}-${maintainer}"
def dockerTag = sourceBranchLabel.replaceAll(/[^0-9a-z]/, '-')
Expand All @@ -1109,7 +1109,7 @@ def runEdition(os, edition, maintainer, stageName) {
if (buildStepCheck(os, edition, maintainer)) {
node(buildJenkins[os]) {
stage(stageName) {
checkout(edition);
checkout(edition)

// I concede...we need a lock for windows...I could not get it to run concurrently...
// v8 would not build multiple times at the same time on the same machine:
Expand Down
0