-
Notifications
You must be signed in to change notification settings - Fork 8
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 deploy step instead of spawning a new dedicated job - enable error reporting when master builds fail
- Loading branch information
Showing
10 changed files
with
1,835 additions
and
1,593 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,4 +4,5 @@ lib | |
*.log | ||
pack | ||
*.jar | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,14 +43,22 @@ pipeline { | |
environment { | ||
YARN_CACHE_FOLDER = "${env.WORKSPACE}/yarn-cache" | ||
SPAWN_WRAP_SHIM_ROOT = "${env.WORKSPACE}" | ||
EMAIL_TO= "[email protected]" | ||
} | ||
|
||
stages { | ||
stage('Build') { | ||
steps { | ||
timeout(30) { | ||
container('node') { | ||
sh "yarn build" | ||
container('node') { | ||
timeout(30){ | ||
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!' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
@@ -60,7 +68,7 @@ pipeline { | |
steps { | ||
container('node') { | ||
timeout(30){ | ||
sh "yarn lint -o eslint.xml -f checkstyle" | ||
sh "yarn lint:ci" | ||
} | ||
} | ||
} | ||
|
@@ -73,22 +81,64 @@ pipeline { | |
expression { | ||
/* Only trigger the deployment job if the changeset contains changes in | ||
the `packages` or `example` directory */ | ||
sh(returnStatus: true, script: 'git diff --name-only HEAD^ | grep --quiet "^packages\\|example"') == 0 | ||
sh(returnStatus: true, script: 'git diff --name-only HEAD^ | grep -q "^packages\\|example"') == 0 | ||
} | ||
} | ||
} | ||
steps { | ||
build job: 'deploy-npm-glsp-vscode-integration', wait: false | ||
steps { | ||
container('node') { | ||
timeout(30) { | ||
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' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
post { | ||
always { | ||
success { | ||
// Record & publish ESLint issues | ||
recordIssues enabledForFailure: true, publishAllIssues: true, aggregatingResults: true, | ||
tools: [esLint(pattern: 'node_modules/**/*/eslint.xml')], | ||
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
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
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
Oops, something went wrong.