Skip to content
This repository was archived by the owner on May 14, 2018. It is now read-only.

Commit 392dc9f

Browse files
committed
Remove parameter
1 parent 6bb2ace commit 392dc9f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Jenkinsfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
pipeline {
22
agent any
33
parameters {
4-
string(name: "INTEGRATION_BRANCH", defaultValue: "master", description: "Integration project branch to build with")
54
string(name: "CELL_NUMBER", defaultValue: "1", description: "Integration. Number of cells to deploy")
65
}
76
stages {
@@ -15,8 +14,8 @@ pipeline {
1514
stage("Integration tests") {
1615
steps {
1716
script {
18-
build job: "integration/${INTEGRATION_BRANCH}", parameters: [
19-
string(name: "COMMIT_MESSAGE", value: GIT_COMMIT_MESSAGE),
17+
build job: "integration/master", parameters: [
18+
text(name: "COMMIT_MESSAGE", value: GIT_COMMIT_MESSAGE),
2019
string(name: "HACK_BRANCH", value: GIT_BRANCH),
2120
string(name: "CELL_NUMBER", value: CELL_NUMBER)
2221
]

0 commit comments

Comments
 (0)