Oh well...

This commit is contained in:
Andrew Steinborn 2018-10-15 21:40:34 -04:00
parent 51473155c0
commit 1d8b11e47b

15
Jenkinsfile vendored
View File

@ -2,24 +2,15 @@ pipeline {
agent none
stages {
stage('Build') {
GIT_BRANCH = sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()
agent {
docker {
image 'velocitypowered/openjdk8-plus-git:slim'
args '-v gradle-cache:/root/.gradle:rw'
}
}
if (GIT_BRANCH == "master") {
steps {
sh './gradlew build --no-daemon'
}
} else {
steps {
sh './gradlew build --no-daemon'
archiveArtifacts 'proxy/build/libs/*-all.jar,api/build/libs/*-all.jar'
}
steps {
sh './gradlew build --no-daemon'
archiveArtifacts 'proxy/build/libs/*-all.jar,api/build/libs/*-all.jar'
}
}
stage('Deploy') {