Skip to content

Earlier .gradle creation to fix populate_dep_cache #8994

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

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ default:
policy: $BUILD_CACHE_POLICY
before_script:
- source .gitlab/gitlab-utils.sh
- mkdir -p .gradle
- export GRADLE_USER_HOME=$(pwd)/.gradle
- |
# Don't put jvm args here as it will be picked up by child gradle processes used in tests
Expand All @@ -153,7 +154,6 @@ default:
# with Gitlab caching, .gradle is always owned by root and thus gradle's chmod invocation fails
# This dance is a hack to have .gradle owned by the Gitlab runner user
- gitlab_section_start "gradle-dance" "Fix .gradle directory permissions"
- mkdir -p .gradle
- cp -r .gradle .gradle-copy
- rm -rf .gradle
- mv .gradle-copy .gradle
Expand Down
Loading