Skip to content

Commit

Permalink
Fix Gradle: isolate fix
Browse files Browse the repository at this point in the history
See PR comment: #3794 (comment)

I attempted the above proposed next steps in this branch and ran the pipeline manually, it and one of the changes fixed the issue!

I'm now going to figure out which specific change fixed the Gradle version issue, and I'll put up a new PR.

The first isolated change will be `workflows/secrel.yml#gate-check:# runs-on: ubuntu-20.04`
  • Loading branch information
gabezurita committed Nov 22, 2024
1 parent b67bb13 commit c0e2ab6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/actions/setup-vro/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
# To avoid a growing cache over time, attempt to delete any files in the Gradle User Home
# that were not used by Gradle during the workflow, prior to saving the cache.
# https://github.com/gradle/actions/setup-gradle@v3#removing-unused-files-from-gradle-user-home-before-saving-to-cache
gradle-home-cache-cleanup: false
gradle-home-cache-cleanup: true

- uses: ./.github/actions/install-java-tools

Expand Down Expand Up @@ -55,8 +55,3 @@ runs:
python3 -m venv ${VENV_EP_MERGE}
source ${VENV_EP_MERGE}/bin/activate
pip install -r domain-ee/ee-ep-merge-app/src/requirements.txt
- name: "Clear Gradle Cache (Debug Step)"
shell: bash
run: rm -rf ~/.gradle || true
if: always() # Ensure cache is cleared even on workflow failures

0 comments on commit c0e2ab6

Please sign in to comment.