Disable tests until we re-make them.

This commit is contained in:
LexManos 2018-11-12 20:21:02 -08:00
parent 72b63e7b36
commit b7a1676b15
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -17,12 +17,12 @@ pipeline {
git(url: 'https://github.com/MinecraftForge/MinecraftForge.git', changelog: true)
}
}
stage('buildandtest') {
stage('build') {
steps {
cache(maxCacheSize: 250/*MB*/, caches: [
[$class: 'ArbitraryFileCache', excludes: 'log.txt', includes: '**/*', path: '${WORKSPACE}/projects/forge/build/extractRangeMap'] //Cache the rangemap to help speed up builds
]){
sh './gradlew ${GRADLE_ARGS} --refresh-dependencies --continue build test'
sh './gradlew ${GRADLE_ARGS} --refresh-dependencies --continue build'
}
script {
env.MYVERSION = sh(returnStdout: true, script: './gradlew properties -q | grep "version:" | awk \'{print $2}\'').trim()
@ -62,8 +62,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts: 'build/libs/**/*.jar', fingerprint: true
junit 'build/test-results/*/*.xml'
jacoco sourcePattern: '**/src/*/java'
//junit 'build/test-results/*/*.xml'
//jacoco sourcePattern: '**/src/*/java'
}
}
}