Skip to content

Commit

Permalink
Oh bah, just set the env vars for git to be happy
Browse files Browse the repository at this point in the history
  • Loading branch information
abayer committed Sep 16, 2016
1 parent c6e8397 commit 7ae4f28
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Jenkinsfile
Expand Up @@ -8,8 +8,14 @@ pipeline {
}

// Run on executors with the "docker" label, because it's either that or Windows here.
agent label:"docker && !spinach"
agent label:"docker"

// Make sure we have GIT_COMMITTER_NAME and GIT_COMMITTER_EMAIL set due to machine weirdness.
environment {
GIT_COMMITTER_NAME = "jenkins"
GIT_COMMITTER_EMAIL = "jenkins@jenkins.io"
}

// The order that sections are specified doesn't matter - this will still be run
// after the stages, even though it's specified before the stages.
postBuild {
Expand Down

0 comments on commit 7ae4f28

Please sign in to comment.