Skip to content

Commit 539fe7e

Browse files
committed
remove wrapper
1 parent ed89b3c commit 539fe7e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/pr_build.yml

+9
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,19 @@ jobs:
8383
if: ${{ matrix.java == '8' }} # Gradle example can only be built on Java 8
8484
working-directory: examples/powertools-examples-core/gradle
8585
run: ./gradlew build
86+
87+
- name: Build Gradle Setup (Kotlin)
88+
if: ${{ matrix.java == '8' }} # Gradle example can only be built on Java 8
89+
working-directory: examples/powertools-examples-core/kotlin
90+
run: |
91+
curl -L -o gradle/wrapper/gradle.zip https:$(cat gradle/wrapper/gradle-wrapper.properties | grep distributionUrl | cut -d ':' -f 2)
92+
unzip gradle/wrapper/gradle.zip -d gradle/wrapper/gradle
93+
./gradle/wrapper/gradle/gradle-8.2.1/bin/gradle wrapper
8694
- name: Build Gradle Example - Kotlin
8795
if: ${{ matrix.java == '8' }} # Gradle example can only be built on Java 8
8896
working-directory: examples/powertools-examples-core/kotlin
8997
run: ./gradlew build
98+
9099
- name: Upload coverage to Codecov
91100
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
92101
if: ${{ matrix.java == '11' }} # publish results once
Binary file not shown.

0 commit comments

Comments
 (0)