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

Test on Gradle 8.10 and minor updates #266

Merged
merged 30 commits into from
Aug 21, 2024
Merged

Test on Gradle 8.10 and minor updates #266

merged 30 commits into from
Aug 21, 2024

Conversation

Goooler
Copy link
Collaborator

@Goooler Goooler commented Jun 11, 2024

No description provided.

Goooler and others added 17 commits February 27, 2024 09:58
* Update gradle/wrapper-validation-action action to v3

* Update main.yml

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Zongle Wang <[email protected]>
* Update dependency gradle to v8.8

* Fix tests

Before:

```sh
> Task :jmhJar
Encountered duplicate path "LICENSE" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "THIRD-PARTY" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "LICENSE" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "THIRD-PARTY" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "LICENSE" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "THIRD-PARTY" during copy operation configured with DuplicatesStrategy.WARN
Encountered duplicate path "me/champeau/jmh/Helper.class" during copy operation configured with DuplicatesStrategy.WARN
```

After:

```sh
> Task :jmhJar
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-asm/1.36/ea8dba84346f9ecd34fc85f83fc1a14f7475348e/jmh-generator-asm-1.36.jar!LICENSE' will be copied to 'LICENSE', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!LICENSE', which has already been copied there.
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-asm/1.36/ea8dba84346f9ecd34fc85f83fc1a14f7475348e/jmh-generator-asm-1.36.jar!THIRD-PARTY' will be copied to 'THIRD-PARTY', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!THIRD-PARTY', which has already been copied there.
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-reflection/1.36/40c9b3bb0523b58dada012987172452895f2c6cb/jmh-generator-reflection-1.36.jar!LICENSE' will be copied to 'LICENSE', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!LICENSE', which has already been copied there.
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-reflection/1.36/40c9b3bb0523b58dada012987172452895f2c6cb/jmh-generator-reflection-1.36.jar!THIRD-PARTY' will be copied to 'THIRD-PARTY', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!THIRD-PARTY', which has already been copied there.
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-core/1.36/5a69117788322630fc5f228bc804771335d41b1b/jmh-core-1.36.jar!LICENSE' will be copied to 'LICENSE', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!LICENSE', which has already been copied there.
zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-core/1.36/5a69117788322630fc5f228bc804771335d41b1b/jmh-core-1.36.jar!THIRD-PARTY' will be copied to 'THIRD-PARTY', overwriting zip entry '/Users/goooler/.gradle/testkit/caches/modules-2/files-2.1/org.openjdk.jmh/jmh-generator-bytecode/1.36/b8ab8b88a6b48a0cb540ede365fa84876e6608bf/jmh-generator-bytecode-1.36.jar!THIRD-PARTY', which has already been copied there.
file '/private/var/folders/ry/cppncsdj3rd634f18p7m2n000000gn/T/spock_Show_warning_for_du_0_temporaryFolder3004629570296311651/build/classes/java/test/me/champeau/jmh/Helper.class' will be copied to 'me/champeau/jmh/Helper.class', overwriting file '/private/var/folders/ry/cppncsdj3rd634f18p7m2n000000gn/T/spock_Show_warning_for_du_0_temporaryFolder3004629570296311651/build/classes/java/main/me/champeau/jmh/Helper.class', which has already been copied there.
```

* Extract assertDuplicateClassesWarning

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Goooler <[email protected]>
@Goooler Goooler changed the title Test on Gradle 8.8 and minor updates Test on Gradle 8.9 and minor updates Jul 12, 2024
Goooler and others added 5 commits July 12, 2024 15:45
* Update dependency gradle to v8.9

* Replace deprecated GFileUtils

* Inline versions

* Fix successfully executes benchmark which uses feature previews

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Goooler <[email protected]>
@Goooler Goooler changed the title Test on Gradle 8.9 and minor updates Test on Gradle 8.10 and minor updates Aug 19, 2024
@Goooler Goooler merged commit 0a53d94 into melix:master Aug 21, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant