-
Notifications
You must be signed in to change notification settings - Fork 6
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
Problem: packages in master are not integrated in public repos #90
Comments
I think we should start simple, only focusing in the Our |
We wouldn't have had a problem like #88 if this mechanism was in place. The packages in This is the first node {
stage('Fetch code') {
checkout scm
}
stage('Build packages') {
jobDsl targets: ['jenkins-groovy/build-packages.groovy'].join('\n')
}
stage('Publish packages') {
jobDsl targets: ['jenkins-groovy/publish-packages.groovy'].join('\n')
}
} The simplest approach could just build all the packages each time and publish them in a temporary folder and later replace the old folder so it happens atomically? E.g. using |
As a developer I want the packages available in the
master
branch to be accessible via public repositories. If a package is deleted, updated or added tomaster
I want the public repositories to reflect the change as soon as possible.The text was updated successfully, but these errors were encountered: