Eric Haag

Results 37 issues of Eric Haag

Recently we had a collision on "experiment run id" for three automated experiment runs. We should reconsider how we determine this value. Currently it's computed as the hex representation of...

Currently, the scripts will return a successful error code if the performance characteristics are unavailable (e.g. due to failed or timed out API calls) and when `--fail-if-not-fully-cacheable` is used. This...

We should merge these two files to one common settings file (e.g. `config.properties`/`settings.properties`). This reduces the number of files and provides us with a file to add more generalized configuration...

user-facing

Always `clone` instead of `fetch` when Git options are different from the default (--depth=1).

user-facing

There may be cases where a user can not resolve artifacts from the Gradle Plugin Portal and must instead rely on an internal artifact repository. Currently, the initialization scripts are...

user-facing

We should consider extracting common user facing text to a single file to reduce duplication. This would help to ensure that the text is consistent and makes updating the text...

refactoring

Given the following build script: ```kotlin plugins { id("org.asciidoctor.jvm.gems") version "3.3.2" id("org.asciidoctor.jvm.convert") version "3.3.2" } repositories { mavenCentral() } tasks.asciidoctor { sources("index.adoc") sourceDirProperty.set(layout.projectDirectory.dir("docs")) outputDirProperty.set(layout.buildDirectory.dir("docs")) } ``` Then an absolute path...

This PR migrates the build to use Spring's Develocity Conventions Maven extension. https://github.com/spring-io/develocity-conventions With this, explicit configuration of the Develocity Maven extension is no longer required, as all configuration is...

In automation scenarios where access to the filesystem isn't possible, as is typically the case for ephemeral CIs, there isn't any reason [to make copies of the project](https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Gradle.md#investigating-file-resources-on-the-local-file-system). This copying...

The scripts should have a way to control the number of backups stored on disk at a time. As it is now, the `.data` directory will endlessly grow over time....