File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
examples/powertools-examples-core/kotlin/gradle/wrapper Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments