We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7aa730 commit ba67aa1Copy full SHA for ba67aa1
java/build-repo.yaml.template
@@ -25,6 +25,20 @@ steps:
25
command: |
26
echo $JAVA_HOME
27
timeoutInSeconds: 400
28
+ - type: Command
29
+ name: Install Gradle
30
+ timeoutInSeconds: 600
31
+ failImmediatelyOnError: true
32
+ command: |
33
+ curl -o gradle-8.5-bin.zip "https://services.gradle.org/distributions/gradle-8.5-bin.zip" -L
34
+ mkdir /opt/gradle
35
+ unzip -d /opt/gradle gradle-8.5-bin.zip
36
+ export PATH=/opt/gradle/gradle-8.5/bin:$PATH
37
+ onFailure:
38
39
40
+ ls
41
+ timeoutInSeconds: 400
42
- type: Command
43
name: Build application
44
timeoutInSeconds: 600
0 commit comments