-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ runs: | |
uses: gradle/[email protected] | ||
with: | ||
cache-read-only: false | ||
- name: Download Gradle Wrapper and print version | ||
- name: Download Gradle and print version | ||
working-directory: ${{ inputs.lingua-franca-dir }} | ||
run: | | ||
# Retry 3 times before the steps actually fails | ||
(echo "==== Gradle Wrapper Download Attempt: 1 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Wrapper Download Attempt: 2 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Wrapper Download Attempt: 3 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Wrapper Download Failed ====" && exit 1) | ||
(echo "==== Gradle Download Attempt: 1 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Download Attempt: 2 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Download Attempt: 3 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Download Failed ====" && exit 1) | ||
shell: bash |