mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-24 16:18:00 -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 {
|
||||
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
|
||||
}
|
||||
stages {
|
||||
stage('cleanCache') {
|
||||
steps {
|
||||
withGradle {
|
||||
sh './gradlew cleanCache'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('applyPatches') {
|
||||
steps {
|
||||
withGradle {
|
||||
sh './gradlew applyPatches --refresh-dependencies'
|
||||
sh './gradlew applyPatches --no-daemon --refresh-dependencies'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('paperclipJar') {
|
||||
steps {
|
||||
withGradle {
|
||||
sh './gradlew createReobfPaperclipJar --refresh-dependencies'
|
||||
sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('test') {
|
||||
steps {
|
||||
withGradle {
|
||||
sh './gradlew test'
|
||||
sh './gradlew test --no-daemon'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue