Skip to content

Commit 05c5337

Browse files
authored
build: downgrade to Gradle 8 (#455)
* build: consistently use gradlew during build Signed-off-by: Niels Pardon <par@zurich.ibm.com> * build: downgrade to Gradle 8 revert "build: update to Gradle 9 (#454)" Signed-off-by: Niels Pardon <par@zurich.ibm.com> --------- Signed-off-by: Niels Pardon <par@zurich.ibm.com>
1 parent 0652221 commit 05c5337

6 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# fetch submodule tags since actions/checkout@v4 does not
7474
git submodule foreach 'git fetch --unshallow || true'
7575
76-
gradle build --rerun-tasks
76+
./gradlew build --rerun-tasks
7777
examples:
7878
name: Build Examples
7979
runs-on: ubuntu-latest
@@ -122,7 +122,7 @@ jobs:
122122
# fetch submodule tags since actions/checkout@v4 does not
123123
git submodule foreach 'git fetch --unshallow || true'
124124
125-
gradle nativeImage
125+
./gradlew nativeImage
126126
- name: Smoke Test
127127
run: |
128128
./isthmus-cli/src/test/script/smoke.sh

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# fetch submodule tags since actions/checkout@v4 does not
4040
git submodule foreach 'git fetch --unshallow || true'
4141
42-
gradle nativeImage
42+
./gradlew nativeImage
4343
- name: Smoke Test
4444
run: |
4545
./isthmus-cli/src/test/script/smoke.sh

ci/release/publish.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set -euo pipefail
66
# ensure the submodule tags exist
77
git submodule foreach 'git fetch --unshallow || true'
88

9-
gradle wrapper
109
./gradlew clean
1110
./gradlew publishAllPublicationsToStagingRepository
1211
./gradlew jreleaserDeploy

gradle/wrapper/gradle-wrapper.jar

-1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)