-
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.
Merge branch 'enclaves2' of github.com:lf-lang/lingua-franca into enc…
…laves2
- Loading branch information
Showing
24 changed files
with
166 additions
and
46 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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
name: Set up build environment | ||
description: Set up Java and Gradle (including caching). | ||
|
||
inputs: | ||
lingua-franca-dir: | ||
description: 'Path to the lingua-franca directory' | ||
required: false | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
@@ -11,3 +17,12 @@ runs: | |
uses: gradle/[email protected] | ||
with: | ||
cache-read-only: false | ||
- name: Download Gradle and print version | ||
working-directory: ${{ inputs.lingua-franca-dir }} | ||
run: | | ||
# Retry 3 times before the steps actually fails | ||
(echo "==== Gradle Download Attempt: 1 ====" && ./gradlew --version) || \ | ||
(sleep 30 && echo "==== Gradle Download Attempt: 2 ====" && ./gradlew --version) || \ | ||
(sleep 30 && echo "==== Gradle Download Attempt: 3 ====" && ./gradlew --version) || \ | ||
(echo "==== Gradle Download Failed ====" && exit 1) | ||
shell: bash |
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 @@ | ||
[versions] | ||
spotlessVersion=6.11.0 | ||
spotlessVersion=6.21.0 | ||
spotlessLibVersion=2.30.0 | ||
kotlinVersion=1.6.21 | ||
shadowJarVersion=7.1.2 | ||
spotbugsPluginVersion=5.1.3 | ||
kotlinVersion=1.9.0 | ||
shadowJarVersion=8.1.1 | ||
spotbugsPluginVersion=5.1.3 |
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
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
Oops, something went wrong.