mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* [monorepo] migrate build scripts to Jenkins * [fraud-dash] fix integration with monorepo GitOrigin-RevId: 6a30ec5ea68a1eae9b663faf9ccdc741ec7f9cf8
82 lines
2.5 KiB
Groovy
82 lines
2.5 KiB
Groovy
// Autogenerated by build scripts. Do not edit.
|
|
|
|
pipeline {
|
|
agent {
|
|
node {
|
|
label 'jenkins-agent-web'
|
|
customWorkspace '/workspace'
|
|
}
|
|
}
|
|
options {
|
|
timestamps()
|
|
timeout(time: 15, unit: 'MINUTES')
|
|
}
|
|
environment {
|
|
BRANCH_NAME = "${env.CHANGE_BRANCH ? env.CHANGE_BRANCH : env.BRANCH_NAME}"
|
|
JENKINS_BUILD_NUMBER = "${BUILD_NUMBER}"
|
|
BUILD_NUMBER = "${SHORT_SHA}_${BUILD_NUMBER}"
|
|
COMMIT_SHA = "${GIT_COMMIT}"
|
|
SHORT_SHA = "${GIT_COMMIT.take(7)}"
|
|
}
|
|
stages {
|
|
stage('Stage 1') {
|
|
parallel {
|
|
stage('Install monorepo') {
|
|
steps {
|
|
retry(count: 3) {
|
|
sh 'make monorepo_setup'
|
|
}
|
|
}
|
|
}
|
|
stage('Create reports folder') {
|
|
steps {
|
|
sh 'mkdir libraries/overleaf-editor-core/reports'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('Stage 2') {
|
|
parallel {
|
|
stage('Lint') {
|
|
steps {
|
|
sh 'bin/run -w /overleaf/libraries/overleaf-editor-core monorepo npm run lint -- --format json --output-file reports/eslint.json'
|
|
}
|
|
post {
|
|
always {
|
|
sh """
|
|
sed -i 's_"filePath":"/overleaf_"filePath":"/workspace_g' libraries/overleaf-editor-core/reports/eslint.json
|
|
"""
|
|
recordIssues checksAnnotationScope: 'ALL', enabledForFailure: true, failOnError: true, id: 'overleaf-editor-core-eslint', name: 'overleaf-editor-core eslint', qualityGates: [[integerThreshold: 1, threshold: 1.0, type: 'TOTAL']], sourceCodeRetention: 'LAST_BUILD', tools: [esLint(pattern: 'libraries/overleaf-editor-core/reports/eslint.json')]
|
|
}
|
|
}
|
|
}
|
|
stage('Format') {
|
|
steps {
|
|
sh 'bin/run -w /overleaf/libraries/overleaf-editor-core monorepo npm run format'
|
|
}
|
|
}
|
|
stage('Typecheck') {
|
|
steps {
|
|
sh 'bin/run -w /overleaf/libraries/overleaf-editor-core monorepo npm run types:check'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
retry(count: 3) {
|
|
sh 'bin/run -w /overleaf/libraries/overleaf-editor-core monorepo npm run test:ci'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
junit checksName: 'overleaf-editor-core test results', testResults: 'libraries/overleaf-editor-core/reports/junit-*.xml'
|
|
}
|
|
cleanup {
|
|
sh 'rm -rf libraries/overleaf-editor-core/reports'
|
|
sh 'make clean_jenkins -j10'
|
|
}
|
|
}
|
|
} |