mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Manually define Gradle
This commit is contained in:
parent
f99cbfa231
commit
293f691d39
1 changed files with 2 additions and 1 deletions
3
bootstrap/fabric/Jenkinsfile
vendored
3
bootstrap/fabric/Jenkinsfile
vendored
|
@ -1,6 +1,7 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
tools {
|
tools {
|
||||||
|
gradle 'Gradle 6'
|
||||||
jdk 'Java 8'
|
jdk 'Java 8'
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
|
@ -9,7 +10,7 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage ('Build') {
|
stage ('Build') {
|
||||||
steps {
|
steps {
|
||||||
sh './gradlew clean build'
|
sh 'gradle clean build'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
|
|
Loading…
Reference in a new issue