-
Notifications
You must be signed in to change notification settings - Fork 50
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
misc: gradle mirror #1486
Merged
Merged
misc: gradle mirror #1486
Changes from 33 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a3ccdbb
misc: gradle mirror
0marperez 3f70567
fix: use different gradle versions
0marperez 2c4b6c1
fix: only use mirror in ci
0marperez f3b4700
fix: use public gradle distro url when not in ci
0marperez 4a48e1d
fix: use proper working dir in CI
0marperez 083a903
fix: avoid configuring working-directory where not needed
0marperez 49527a1
fix: left over working dir config from codebuild ci
0marperez 8febb3b
fix: pull request feedback
0marperez 4117e05
misc: possible fix
0marperez a7f56ee
misc: pwd && ls becasue action can't be found
0marperez 6e86682
misc: add working dir to test
0marperez 53bbeb0
pwd and ls again
0marperez 8aefd49
fix: use working directory
0marperez d63c671
fix: possible fixes
0marperez 18e7f96
Merge branch 'main' of https://github.com/awslabs/aws-sdk-kotlin into…
0marperez 5736050
possible fix for lint & adding custom URL to service check batch
0marperez 55735e8
misc: use path in lint workflow
0marperez ad67c6b
fix: use working dir in ktlint workflow
0marperez 1342474
fix: use working dir in codebuild CI
0marperez 9ecf72c
Trigger CI
0marperez 6f9e46b
fix: use checkout sources v4 in codebuild CI
0marperez 6c00a70
fix: configure path when checking out in codebuild CI
0marperez 053fe7a
fix: use working dir for every run
0marperez 271ed74
Revert "fix: use working dir for every run"
0marperez 2670696
Revert "fix: configure path when checking out in codebuild CI"
0marperez 6f1e46e
Revert "fix: use checkout sources v4 in codebuild CI"
0marperez 2a28159
misc: hardcode configure gradle task
0marperez c4e11d5
fix: add working directories
0marperez b52f293
fix: add missing working directory
0marperez beafa42
Merge branch 'main' of https://github.com/awslabs/aws-sdk-kotlin into…
0marperez 5093d3e
Merge branch 'main' of https://github.com/awslabs/aws-sdk-kotlin into…
0marperez 4ced053
misc: trigger CI
0marperez 0c0cd7d
feat: use action
0marperez f1c6672
fix: remove wrapper changes
0marperez b39f377
fix: pr feedback
0marperez 5c98b5e
Merge branch 'main' of https://github.com/awslabs/aws-sdk-kotlin into…
0marperez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
3 changes: 2 additions & 1 deletion
3
tests/integration-tests/ecs-credentials/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip | ||
# Keep gradle version in sync with aws-sdk-kotlin/gradle/wrapper/gradle-wrapper.properties | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Extraneous
\
in URL. Applies to other gradle-wrapper.properties files in this PR too.