3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00
Velocity/Jenkinsfile
Andrew Steinborn bbf861d3bc Convert into a multi-module project.
For now, the API module only contains a few assorted utilities. More
will be added later.
2018-07-31 16:12:41 -04:00

22 Zeilen
359 B
Groovy

pipeline {
agent {
docker {
image 'openjdk:8-jdk-slim'
args '-v gradle-cache:/home/gradle/.gradle:rw'
}
}
stages {
stage('Build') {
steps {
sh './gradlew shadowJar'
archiveArtifacts 'proxy/build/libs/*-all.jar'
}
}
stage('Test') {
steps {
sh './gradlew test'
}
}
}
}