mirror of https://github.com/logos-co/roadmap.git
45 lines
766 B
Groovy
45 lines
766 B
Groovy
pipeline {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
|
|
options {
|
|
timestamps()
|
|
/* Prevent Jenkins jobs from running forever */
|
|
timeout(time: 10, unit: 'MINUTES')
|
|
/* manage how many builds we keep */
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '20',
|
|
daysToKeepStr: '30',
|
|
))
|
|
disableConcurrentBuilds()
|
|
}
|
|
|
|
environment {
|
|
GIT_COMMITTER_NAME = 'status-im-auto'
|
|
GIT_COMMITTER_EMAIL = 'auto@status.im'
|
|
}
|
|
|
|
stages {
|
|
stage('Deps') {
|
|
steps {
|
|
sh 'npm install'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh 'npx quartz build'
|
|
}
|
|
}
|
|
|
|
stage('Publish Prod') {
|
|
steps {
|
|
sshagent(credentials: ['status-im-auto-ssh']) {
|
|
sh 'ghp-import -p public'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|