forked from darkobodnaruk/docs.status.im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
84 lines (75 loc) · 1.87 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
pipeline {
agent { label 'linux' }
options {
disableConcurrentBuilds()
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '30',
))
}
environment {
GIT_USER = 'status-im-auto'
GIT_MAIL = '[email protected]'
}
stages {
stage('Git Prep') {
steps {
sh "git config user.name ${GIT_USER}"
sh "git config user.email ${GIT_MAIL}"
/* necessary to have access to the theme partials */
sshagent(credentials: ['status-im-auto-ssh']) {
sh 'git submodule update --init --recursive'
}
}
}
stage('Install Deps') {
steps {
sh 'npm install'
sh 'npm update'
}
}
stage('Index') {
steps {
withCredentials([usernamePassword(
credentialsId: 'search.status.im-auth',
usernameVariable: 'HEXO_ES_USER',
passwordVariable: 'HEXO_ES_PASS'
)]) {
sh 'npm run index'
}
}
}
stage('Build') {
steps {
sh 'npm run clean'
sh 'npm run build'
}
}
stage('Robot') {
when { expression { !GIT_BRANCH.endsWith('master') } }
steps { script {
sh 'echo "Disallow: /" >> public/robots.txt'
} }
}
stage('Publish Prod') {
when { expression { GIT_BRANCH.endsWith('master') } }
steps { script {
sshagent(credentials: ['status-im-auto-ssh']) {
sh 'npm run deploy'
}
} }
}
stage('Publish Devel') {
when { expression { !GIT_BRANCH.endsWith('master') } }
steps { script {
sshagent(credentials: ['jenkins-ssh']) {
sh '''
rsync -e 'ssh -o StrictHostKeyChecking=no' -r --delete public/. \
[email protected]:/var/www/dev/
'''
}
} }
}
}
}