mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-10 01:33:09 +00:00
chore: create deploy step for nextjs apps
This commit is contained in:
parent
63e0c053ca
commit
609fd32821
12
ci/Jenkinsfile
vendored
12
ci/Jenkinsfile
vendored
@ -42,7 +42,7 @@ pipeline {
|
||||
stage('experimental/rln-js') { steps { script { buildExample() } } }
|
||||
stage('experimental/rln-identity') { steps { script { buildExample() } } }
|
||||
stage('dogfooding') { steps { script { buildExample() } } }
|
||||
stage('flush-notes') { steps { script { buildExample() } } }
|
||||
stage('flush-notes') { steps { script { buildNextJSExample() } } }
|
||||
}
|
||||
}
|
||||
|
||||
@ -77,6 +77,16 @@ def buildExample(example=STAGE_NAME) {
|
||||
}
|
||||
}
|
||||
|
||||
def buildNextJSExample(example=STAGE_NAME) {
|
||||
def dest = "${WORKSPACE}/build/docs/${example}"
|
||||
dir("examples/${example}") {
|
||||
sh 'npm install --silent'
|
||||
sh 'npm run build'
|
||||
sh "mkdir -p ${dest}"
|
||||
sh "cp -r out/. ${dest}"
|
||||
}
|
||||
}
|
||||
|
||||
def copyExample(example=STAGE_NAME) {
|
||||
def source = "examples/${example}"
|
||||
def dest = "build/docs/${example}"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user