mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-25 00:27:51 -05:00
yep, it was using an older version of netty
This commit is contained in:
parent
07bf264e8e
commit
483a476d6b
1 changed files with 3 additions and 11 deletions
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
|
@ -6,32 +6,24 @@ pipeline {
|
||||||
options {
|
options {
|
||||||
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
|
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
|
||||||
}
|
}
|
||||||
stages {
|
|
||||||
stage('cleanCache') {
|
|
||||||
steps {
|
|
||||||
withGradle {
|
|
||||||
sh './gradlew cleanCache'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('applyPatches') {
|
stage('applyPatches') {
|
||||||
steps {
|
steps {
|
||||||
withGradle {
|
withGradle {
|
||||||
sh './gradlew applyPatches --refresh-dependencies'
|
sh './gradlew applyPatches --no-daemon --refresh-dependencies'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('paperclipJar') {
|
stage('paperclipJar') {
|
||||||
steps {
|
steps {
|
||||||
withGradle {
|
withGradle {
|
||||||
sh './gradlew createReobfPaperclipJar --refresh-dependencies'
|
sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('test') {
|
stage('test') {
|
||||||
steps {
|
steps {
|
||||||
withGradle {
|
withGradle {
|
||||||
sh './gradlew test'
|
sh './gradlew test --no-daemon'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue