forked from status-im/translate.status.im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
72 lines (64 loc) · 1.57 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
pipeline {
agent { label 'linux' }
options {
disableConcurrentBuilds()
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '30',
))
}
environment {
DEV_HOST = '[email protected]'
DEV_OPTS = '-e "ssh -o StrictHostKeyChecking=no"'
DEV_SITE = 'dev-translate'
GH_USER = 'status-im-auto'
GH_MAIL = '[email protected]'
GH_REPO = 'translate.status.im'
}
stages {
stage('Git Prep') {
steps {
sh "git config user.name ${GH_USER}"
sh "git config user.email ${GH_MAIL}"
}
}
stage('Install Deps') {
steps {
sh 'yarn install'
sh 'yarn upgrade'
}
}
stage('Build') {
steps {
sh 'yarn run clean'
sh 'yarn 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 {
withCredentials([string(
credentialsId: 'jenkins-github-token',
variable: 'GH_TOKEN',
)]) {
sh 'yarn run deploy:ci'
}
} }
}
stage('Publish Devel') {
when { expression { !GIT_BRANCH.endsWith('master') } }
steps { script {
sshagent(credentials: ['jenkins-ssh']) {
sh "rsync ${DEV_OPTS} -r --delete build/. ${DEV_HOST}:/var/www/${DEV_SITE}/"
}
} }
}
}
}