summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:42:54 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-07 00:19:48 -0700
commitf9664a1e8a34d3fe917b042fcd124fdb2619927c (patch)
tree81e253ee04fb2a5e06e315e1875eecea0e930275 /build
parent29fca51821981079175adf336d303a474f5ef310 (diff)
downloadchat-f9664a1e8a34d3fe917b042fcd124fdb2619927c.tar.gz
chat-f9664a1e8a34d3fe917b042fcd124fdb2619927c.tar.bz2
chat-f9664a1e8a34d3fe917b042fcd124fdb2619927c.zip
Adjustments to Jenkinsfile
Diffstat (limited to 'build')
-rw-r--r--build/Jenkinsfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/build/Jenkinsfile b/build/Jenkinsfile
index 795bb163a..e5586eea0 100644
--- a/build/Jenkinsfile
+++ b/build/Jenkinsfile
@@ -86,6 +86,11 @@ podTemplate(label: 'jenkins-slave',
git branch: env.BRANCH_NAME, credentialsId: 'a8f2d76b-8a29-4525-b57a-eb0447d7779c', url: 'https://github.com/mattermost/mattermost-server.git'
}
+ dir('mattermost-webapp') {
+ git branch: 'master', credentialsId: 'a8f2d76b-8a29-4525-b57a-eb0447d7779c', url: 'https://github.com/mattermost/mattermost-webapp.git'
+ sh "git checkout ${env.BRANCH_NAME} || echo 'NO CLIENT BRANCH'"
+ }
+
// Checkout enterprise
dir('enterprise') {
git branch: 'master', credentialsId: 'a8f2d76b-8a29-4525-b57a-eb0447d7779c', url: 'https://github.com/mattermost/enterprise.git'
@@ -131,7 +136,7 @@ podTemplate(label: 'jenkins-slave',
sh 'cd /go/src/github.com/mattermost/mattermost-server && make build BUILD_NUMBER=$BUILD_NUMBER'
}
container('mattermost-node') {
- sh 'cd mattermost-webapp && make build-client BUILD_NUMBER=$BUILD_NUMBER'
+ sh 'cd mattermost-webapp && make build BUILD_NUMBER=$BUILD_NUMBER'
}
container('golang') {
sh 'cd /go/src/github.com/mattermost/mattermost-server && make package BUILD_NUMBER=$BUILD_NUMBER'