Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NXP-30583: use maven workflow instead of jenkins job #148

Merged
merged 2 commits into from Sep 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
429 changes: 8 additions & 421 deletions ci/jenkinsfiles/build.groovy

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion ci/jenkinsfiles/crowdin_job.groovy
Expand Up @@ -17,7 +17,7 @@
* Abdoul BA <aba@nuxeo.com>
* Nuno Cunha <ncunha@nuxeo.com>
*/
library identifier: 'nuxeo-napps-tools@0.0.10', retriever: modernSCM(
library identifier: 'nuxeo-napps-tools@0.0.13', retriever: modernSCM(
[$class : 'GitSCMSource',
credentialsId: 'jx-pipeline-git-github',
remote : 'https://github.com/nuxeo/nuxeo-napps-tools.git'])
Expand All @@ -29,6 +29,13 @@ pipeline {
agent {
label 'jenkins-python37'
}
triggers {
cron('H 6 * * *')
upstream(
threshold: hudson.model.Result.SUCCESS,
upstreamProjects: 'nuxeo/nuxeo-coldstorage/lts-2021',
)
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(daysToKeepStr: '15', numToKeepStr: '10', artifactNumToKeepStr: '5'))
Expand Down