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

refactor: convert Jenkinsfile to declarative pipeline syntax #14

Merged
merged 5 commits into from
Aug 10, 2021

Conversation

jdrueckert
Copy link
Member

No description provided.

@jdrueckert jdrueckert added the enhancement New feature or request label Jul 3, 2021
@jdrueckert jdrueckert self-assigned this Jul 3, 2021
@jdrueckert
Copy link
Member Author

Fix Checkstyle Findings

Copy link
Member

@keturn keturn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks reasonable. Ideally we'll figure out how to run it before merging.

There are some things about how we handle failure cases that we'll want to change, but I'd be okay with leaving those changes for a separate PR if you want to keep this one strictly about the scripted/declarative syntax.

// We need to upload the XML reports for visualization in Jenkins.
//
// See https://docs.gradle.org/current/userguide/java_testing.html#test_reporting
junit testResults: '**/build/test-results/unitTest/*.xml', allowEmptyResults: true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking about whether we want allowEmptyResults: true here. I guess some modules don't define tests at all; what happens when we run unitTest there? If they don't produce any test-results, then we'd need to allow empty results.

But if they do produce test-results (that just say "0 tests discovered") then we don't have any reason to allow empty results.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think they don't produce any test-results if there are no tests 🤔 not entirely sure though

steps {
sh './gradlew --console=plain javadoc'
script {
if (fileExists("build/docs/javadoc/index.html")) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can this fileExists thing go inside a when expression instead of script?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

afaik it cannot, as we need to execute something before we can check and when IIRC is only executed at the very start of / before a stage

@Cervator
Copy link
Member

There are more related changes over in https://github.com/Nanoware/ModuleJteConfig/blob/develop/Jenkinsfile right now, but also an apparent dependency on upgrading Jenkins and some plugins before Declarative will play along nicely with JTE.

@keturn
Copy link
Member

keturn commented Jul 19, 2021

Specifically, it's the "Pipeline: Model API" plugin that needs to be upgraded, as supporting declarative pipeline with Jenkins Templating Engine is in the next major revision. And for whatever reason, it's not something we seem to be able to upgrade standalone. So I concur, it looks like we need to upgrade the whole Jenkins controller.

@keturn
Copy link
Member

keturn commented Jul 19, 2021

but I also am quite disappointed with the error reporting and troubleshooting for this error, which led me to think: Do we need JTE for this?

I don't think we're making use of its templating abilities here. If I understand correctly, we just want to be able to define the pipeline in a way that a module committer cannot override by adding their own Jenkinsfile.

I found a couple possibilities but none quite fit:

and as difficult as it was for me to see how it was the use of JTE that made for our failure case here, I don't really have any reason to believe that a similar failure in any of those other plugins would be any less obtuse. 😐

@keturn
Copy link
Member

keturn commented Aug 6, 2021

we upgraded Jenkins and the builds are closer to working now, or at least giving more relevant error messages.

Copy link
Member

@Cervator Cervator left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tiny typo fix might be enough! Looks nice otherwise :-)

String[] jobNameParts = env.JOB_NAME.tokenize('/') as String[]
String realPojrectName = jobNameParts.length < 2 ? env.JOB_NAME : jobNameParts[jobNameParts.length - 2]
boolean originNanoware = jobNameParts[0].equals("Nanoware")
boolean experimental = jobNameParts.length >= 2 && jobNameParts[2].startsWith("X")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the X here is meant to tie it to https://jenkins.terasology.io/teraorg/job/Nanoware/job/TerasologyModules/job/X/ maybe include a link to it? This could get confusing over time if things change and only part of the picture is readily visible :-)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

like so?

Copy link
Member

@keturn keturn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Goal of "convert to declarative" achieved, with some good improvements for clarity along the way. Result seems to be working now that we have learned how to use the Nanoware jobs to confirm.

Ship it!

@keturn keturn merged commit ae335fe into develop Aug 10, 2021
@keturn keturn deleted the refactor/convert-pipeline-to-declarative branch August 10, 2021 22:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants