Disable tests until we re-make them.
This commit is contained in:
parent
72b63e7b36
commit
b7a1676b15
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue