-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update lerna and minimum node version - eclipse-glsp/glsp#676: Update to lerna 6 and set node 14 as minimum engine version - eclipse-glsp/glsp#812: Improve yarn scripts - Remove linting from prepare step - Add dedicated :ci scrips for testing and linting - Add 'all' script on root level - Consistently sort scripts ascending - eclipse-glsp/glsp#680: Update to latest `@eclipse-glsp/config` version - eclipse-glsp/glsp#794: Update Jenkinsfile to - directly include the npm deploy step instead of spawning a new dedicated job - enable error reporting when master builds fail
- Loading branch information
Showing
7 changed files
with
126 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ kind: Pod | |
spec: | ||
containers: | ||
- name: ci | ||
image: eclipseglsp/ci:alpine | ||
image: eclipseglsp/ci:alpine-v3.1 | ||
tty: true | ||
resources: | ||
limits: | ||
|
@@ -59,6 +59,7 @@ pipeline { | |
environment { | ||
YARN_CACHE_FOLDER = "${env.WORKSPACE}/yarn-cache" | ||
SPAWN_WRAP_SHIM_ROOT = "${env.WORKSPACE}" | ||
EMAIL_TO= "[email protected]" | ||
} | ||
|
||
stages { | ||
|
@@ -67,8 +68,14 @@ pipeline { | |
container('ci') { | ||
timeout(30){ | ||
dir('client') { | ||
sh 'yarn install --ignore-scripts' | ||
sh 'yarn build' | ||
sh "yarn install" | ||
script { | ||
// Fail the step if there are uncommited changes to the yarn.lock file | ||
if (sh(returnStatus: true, script: 'git diff --name-only | grep -q "^yarn.lock"') == 0) { | ||
echo 'The yarn.lock file has uncommited changes!' | ||
error 'The yarn.lock file has uncommited changes!' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
@@ -111,19 +118,40 @@ pipeline { | |
expression { | ||
/* Only trigger the deployment job if the changeset contains changes in | ||
the `server` or `client/packages/` directory */ | ||
sh(returnStatus: true, script: 'git diff --name-only HEAD^ | grep --quiet "^server\\|client/packages/"') == 0 | ||
sh(returnStatus: true, script: 'git diff --name-only HEAD^ | grep -q "^server\\|client/packages/"') == 0 | ||
} | ||
} | ||
} | ||
steps { | ||
build job: 'deploy-p2-ide-integration', wait: true | ||
build job: 'deploy-npm-ide-integration', wait: true | ||
stages { | ||
stage('Deploy client (NPM)') { | ||
steps { | ||
container('ci') { | ||
timeout(30) { | ||
dir(client) { | ||
withCredentials([string(credentialsId: 'npmjs-token', variable: 'NPM_AUTH_TOKEN')]) { | ||
sh 'printf "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}\n" >> $WORKSPACE/.npmrc' | ||
} | ||
sh 'git config user.email "[email protected]"' | ||
sh 'git config user.name "eclipse-glsp-bot"' | ||
sh 'yarn publish:next' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
stage('Deploy server (P2)') { | ||
steps { | ||
timeout(30){ | ||
build job: 'deploy-p2-ide-integration', wait: true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
post{ | ||
always{ | ||
success{ | ||
container('ci') { | ||
|
||
// Record & publish checkstyle issues | ||
|
@@ -140,5 +168,38 @@ pipeline { | |
qualityGates: [[threshold: 1, type: 'TOTAL', unstable: true]] | ||
} | ||
} | ||
failure { | ||
script { | ||
if (env.BRANCH_NAME == 'master') { | ||
echo "Build result FAILURE: Send email notification to ${EMAIL_TO}" | ||
emailext attachLog: true, | ||
from: '[email protected]', | ||
body: 'Job: ${JOB_NAME}<br>Build Number: ${BUILD_NUMBER}<br>Build URL: ${BUILD_URL}', | ||
mimeType: 'text/html', subject: 'Build ${JOB_NAME} (#${BUILD_NUMBER}) FAILURE', to: "${EMAIL_TO}" | ||
} | ||
} | ||
} | ||
unstable { | ||
script { | ||
if (env.BRANCH_NAME == 'master') { | ||
echo "Build result UNSTABLE: Send email notification to ${EMAIL_TO}" | ||
emailext attachLog: true, | ||
from: '[email protected]', | ||
body: 'Job: ${JOB_NAME}<br>Build Number: ${BUILD_NUMBER}<br>Build URL: ${BUILD_URL}', | ||
mimeType: 'text/html', subject: 'Build ${JOB_NAME} (#${BUILD_NUMBER}) UNSTABLE', to: "${EMAIL_TO}" | ||
} | ||
} | ||
} | ||
fixed { | ||
script { | ||
if (env.BRANCH_NAME == 'master') { | ||
echo "Build back to normal: Send email notification to ${EMAIL_TO}" | ||
emailext attachLog: false, | ||
from: '[email protected]', | ||
body: 'Job: ${JOB_NAME}<br>Build Number: ${BUILD_NUMBER}<br>Build URL: ${BUILD_URL}', | ||
mimeType: 'text/html', subject: 'Build ${JOB_NAME} back to normal (#${BUILD_NUMBER})', to: "${EMAIL_TO}" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ lib | |
|
||
*.log | ||
*.ttf | ||
tsconfig.tsbuildinfo | ||
tsconfig.tsbuildinfo | ||
eslint.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters