Luther Tegtmeier
Luther Tegtmeier
I did this by converting to `.eslintrc.js`: ```js { rules: [ 'header/header': [ 'error', 'line', [ { pattern: ' Copyright © \\d{4}', template: ` Copyright © ${new Date().getFullYear()}`, }, ],...
For now, you could have a Jenkins admin copy the `build-time-blame-config.json` file from one job configuration folder to another. That's controlled by [BlameFilePaths](https://github.com/jenkinsci/build-time-blame-plugin/blob/master/src/main/groovy/org/jenkins/ci/plugins/buildtimeblame/io/BlameFilePaths.groovy#L11C23-L11C51). The easiest way to fully support this...
> I would like to see a way for a Jenkins Administrator to be able to define in the Jenkins' configuration and a Jenkins Job's configuration default Build Time Blame...
We're seeing the same error message in `docker-machine ls`. Our runner is able to scale up and down. I can see the number of instances changing in the EC2 console....
> Can you try the default ones? ~~We use the default filters for both types with version 7.9.0 of the module.~~ Looking again, the default changed since I last copied...
We never solved this issue with Docker Machine or understood the root cause. We moved to the `docker-autoscaler` executor.
How many separate builds do you typically have for a single PR or non-default branch? If you are using Jenkins2.0 pipeline builds, I would expect the single-build stage run times...
The main benefit of log-scanning like the current reports do is that it can break apart the steps in a single shell command or stage. The downside is that it...
To wrap it in a timeout from outside, the actual processing would have to move to the background. I'm not sure of the best way to do that in Jenkins....