File tree Expand file tree Collapse file tree 5 files changed +9
-18
lines changed Expand file tree Collapse file tree 5 files changed +9
-18
lines changed Original file line number Diff line number Diff line change @@ -14,18 +14,12 @@ jobs:
1414 - name : Set up JDK
1515 uses : actions/setup-java@v4
1616 with :
17- java-version : ' 23 '
17+ java-version : ' 21 '
1818 distribution : ' temurin'
1919 cache : gradle
2020
21- # https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#build-with-a-specific-gradle-version
22- - name : Setup Gradle
23- uses : gradle/actions/setup-gradle@v4
24- with :
25- gradle-version : ' 8.14.2' # Quotes required to prevent YAML converting to number
26-
2721 - name : Run benchmark
28- run : gradle :benchmark:run
22+ run : ./gradlew :benchmark:run
2923
3024 - name : Upload benchmark artifacts
3125 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -16,18 +16,12 @@ jobs:
1616 - name : Set up JDK
1717 uses : actions/setup-java@v4
1818 with :
19- java-version : ' 23 '
19+ java-version : ' 21 '
2020 distribution : ' temurin'
2121 cache : gradle
2222
23- # https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#build-with-a-specific-gradle-version
24- - name : Setup Gradle
25- uses : gradle/actions/setup-gradle@v4
26- with :
27- gradle-version : ' 8.14.2' # Quotes required to prevent YAML converting to number
28-
2923 - name : Build with Gradle
30- run : gradle build
24+ run : ./gradlew build
3125
3226 - name : Run checks and tests
33- run : gradle check
27+ run : ./gradlew check
Original file line number Diff line number Diff line change 4646 env :
4747 USERNAME : ${{ github.actor }} # GitHub username of the user/bot triggering the workflow
4848 TOKEN : ${{ secrets.GITHUB_TOKEN }} # GitHub token with packages:write permission
49- run : gradle publish
49+ run : ./gradlew publish
Original file line number Diff line number Diff line change 1919* .tar.gz
2020* .rar
2121
22+ # Exception: Allow gradle wrapper jar
23+ ! gradle /wrapper /gradle-wrapper.jar
24+
2225# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2326hs_err_pid *
2427replay_pid *
You can’t perform that action at this time.
0 commit comments