-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
88 lines (80 loc) · 2.53 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
85
86
87
88
pipeline {
agent {
dockerfile {
label 'linux'
dir 'ci'
args '-v /home/jenkins/.ssh/known_hosts:/home/jenkins/.ssh/known_hosts:ro'
}
}
options {
disableConcurrentBuilds()
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '30',
))
}
environment {
SITE_DOMAIN = 'lab.waku.org'
GIT_AUTHOR_NAME = 'status-im-auto'
GIT_AUTHOR_EMAIL = '[email protected]'
PUPPETEER_SKIP_DOWNLOAD = 'true'
VITE_WALLETCONNECT_PROJECT_ID = credentials('vite-walletconnect-project-id')
}
stages {
stage('Pre') {
steps {
sh 'npm install --silent'
/* TODO: Build the main page. */
sh 'mkdir -p build/docs'
sh 'cp index.html build/docs/'
}
}
stage('Examples') {
parallel {
stage('experimental/web-chat') { steps { script { buildExample() } } }
stage('experimental/noise-js') { steps { script { buildExample() } } }
stage('experimental/noise-rtc') { steps { script { buildExample() } } }
stage('experimental/relay-direct-rtc') { steps { script { buildExample() } } }
stage('experimental/rln-js') { steps { script { buildExample() } } }
stage('experimental/rln-identity') { steps { script { buildExample() } } }
stage('dogfooding') { steps { script { buildExample() } } }
stage('message-monitor') { steps { script { buildExample() } } }
stage('flush-notes') { steps { script { buildExample(example='flush-notes', outDir='out') } } }
stage('buddybook') { steps { script { buildExample(example='buddybook', outDir='dist') } } }
}
}
stage('HTML Examples') {
parallel {
stage('experimental/relay-js') { steps { script { copyExample() } } }
stage('experimental/light-js') { steps { script { copyExample() } } }
}
}
stage('Publish') {
steps { script {
sh "echo ${SITE_DOMAIN} > build/docs/CNAME"
sshagent(credentials: ['status-im-auto-ssh']) {
sh 'node ci/deploy.js'
}
} }
}
}
post {
always { cleanWs() }
}
}
def buildExample(example=STAGE_NAME, outDir='build') {
def dest = "${WORKSPACE}/build/docs/${example}"
dir("examples/${example}") {
sh 'npm install --silent'
sh 'npm run build'
sh "mkdir -p ${dest}"
sh "cp -r ${outDir}/. ${dest}"
}
}
def copyExample(example=STAGE_NAME) {
def source = "examples/${example}"
def dest = "build/docs/${example}"
sh "mkdir -p ${dest}"
sh "cp -r ${source}/. ${dest}"
}