Lan Xia

Results 427 comments of Lan Xia

https://github.com/adoptium/aqa-systemtest/pull/493 https://github.com/adoptium/aqa-tests/pull/5773 https://github.com/adoptium/STF/pull/141 https://github.com/adoptium/TKG/pull/639

Just for the record, [Exclude mauve Package getModifiers, DecimalFormat suffix/prefix](https://github.com/adoptium/aqa-systemtest/pull/501#top)

@annaibm could you take a look? Thanks

There are many cases, and I did not list them all. Please feel free to do it in a couple of batches.

I think we can use `@Field` annotation for global variables: https://stackoverflow.com/questions/6305910/how-do-i-create-and-access-the-global-variables-in-groovy

Note: `@Field` cannot be initialized before `params` is populated by Jenkins. Failed with `NullPointerException`: ``` @Field String SDK_RESOURCE = params.SDK_RESOURCE ? params.SDK_RESOURCE : "releases" ``` Correct: ``` @Field String SDK_RESOURCE...

We haven't had the opportunity to address all of the issues yet. This work should be broken into smaller, manageable chunks, starting with minimal changes and thorough testing to ensure...

This issue is related to the Jenkins config. We can add a startup option for the Jenkins instance to turn off the warnings ``` JAVA_OPTS=-Dorg.jenkinsci.plugins.workflow.cps.LoggingInvoker.fieldSetWarning=false ``` For details, please refer...

It's good to address these issues, but in my view, they aren't very critical. Currently, lots of warnings could hide the real error. To fix all of them may be...

Thanks for trying to optimize the workflow. It would be great if we could reduce the common work and reduce the duplication. Currently, the exclusion workflow is the following: -...