lrozenblyum

Results 20 comments of lrozenblyum

The bug is reproduced in the build: http://www.rultor.com/t/14467-387496260

I think it's an important topic @yegor256 to make qulice JavadocPackageCheck better. Typically (in a Maven project) a single package resides in 2 directories: src/main/java/... and src/test/java/.. When a directory...

Flyway 7.9.0 included a flag to allow fail-fast behavior in case of missing locations **flyway.failOnMissingLocations** https://github.com/flyway/flyway/issues/2205

@bmarwell @elharo it's really a nice feature to have in the plug-in. Currently enabling suppressions for a Maven multi-module project is much more complex than it could be. `${config_loc}` support...

Hi @KalleOlaviNiemitalo! The output: ``` false Optional.empty io.jenkins.plugins.checks.github.status.GitHubStatusChecksProperties@445d923a Optional[Jenkins] ``` obviously shows the settings are not fine. The corresponding settings block from the Jenkins job (screenshot) ![image](https://user-images.githubusercontent.com/1285898/133964801-3bbd1de8-e529-408d-8eb9-b5d3bc139932.png)

@KalleOlaviNiemitalo about pipeline libraries: * the global shared pipeline libraries are not defined * however about pipeline libraries defined by some plug-ins: I don't know how to check it properly....

Hello @KalleOlaviNiemitalo! sorry for long delay. Here is the output of the script above for the job of interest: ``` class org.jenkinsci.plugins.workflow.job.WorkflowJob is SCMTriggerItem hudson.plugins.git.GitSCM@34e39b12 git https://github.com/ is GitSCM has...

@KalleOlaviNiemitalo the relevant part of the XML of the job ```XML 2 https://github.com/ ${BRANCH} false true false Jenkins false false /ci_scripts/Jenkinsfile_deploy false ```

@KalleOlaviNiemitalo the job looks to be correct... It's a pipeline run from a git file itself, The relevant extract from the pipeline script ```Gradle stage('Checkout scm') { steps { checkout([...

Thanks @KalleOlaviNiemitalo, I'll try the latter suggestion (about adding `GitSCMStatusChecksExtension` to the `extensions:` list) and will report about the results.