mirror of https://github.com/waku-org/js-waku.git
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
pipeline {
|
|
agent { label 'linux' }
|
|
|
|
options {
|
|
disableConcurrentBuilds()
|
|
/* manage how many builds we keep */
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '20',
|
|
daysToKeepStr: '30',
|
|
))
|
|
}
|
|
|
|
environment {
|
|
GIT_AUTHOR_NAME = 'status-im-auto'
|
|
GIT_AUTHOR_EMAIL = 'auto@status.im'
|
|
PUPPETEER_SKIP_DOWNLOAD = 'true'
|
|
}
|
|
|
|
stages {
|
|
stage('Deps') {
|
|
steps {
|
|
sh 'npm install'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh 'npm run build'
|
|
sh 'npm run doc'
|
|
}
|
|
}
|
|
|
|
stage('Examples') {
|
|
parallel {
|
|
stage('eth-pm') { steps { script { buildExample() } } }
|
|
stage('eth-pm-wallet-encryption') { steps { script { buildExample() } } }
|
|
stage('relay-reactjs-chat') { steps { script { buildExample() } } }
|
|
stage('store-reactjs-chat') { steps { script { buildExample() } } }
|
|
stage('web-chat') { steps { script { buildExample() } } }
|
|
}
|
|
}
|
|
|
|
stage('Publish') {
|
|
when { expression { GIT_BRANCH.endsWith('master') } }
|
|
steps { script {
|
|
sshagent(credentials: ['status-im-auto-ssh']) {
|
|
sh 'npm run deploy'
|
|
}
|
|
} }
|
|
}
|
|
}
|
|
post {
|
|
always { cleanWs() }
|
|
}
|
|
}
|
|
|
|
def buildExample(example=STAGE_NAME) {
|
|
def dest = "${WORKSPACE}/build/docs/examples/${example}"
|
|
dir("examples/${example}") {
|
|
sh 'npm install'
|
|
sh "mkdir -p ${dest}"
|
|
sh "cp -r build/. ${dest}"
|
|
}
|
|
}
|