Jenkins fix

This commit is contained in:
Ethan Roseman 2021-01-19 18:16:45 +09:00
parent 8081c27cc0
commit 00861d0a5e

9
Jenkinsfile vendored
View File

@ -1,6 +1,13 @@
def agentLabel
if (BRANCH_NAME == "master") {
agentLabel = "master"
} else {
agentLabel = "papermario"
}
pipeline {
agent {
label 'papermario'
label agentLabel
}
stages {