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)
|
git(url: 'https://github.com/MinecraftForge/MinecraftForge.git', changelog: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('buildandtest') {
|
stage('build') {
|
||||||
steps {
|
steps {
|
||||||
cache(maxCacheSize: 250/*MB*/, caches: [
|
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
|
[$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 {
|
script {
|
||||||
env.MYVERSION = sh(returnStdout: true, script: './gradlew properties -q | grep "version:" | awk \'{print $2}\'').trim()
|
env.MYVERSION = sh(returnStdout: true, script: './gradlew properties -q | grep "version:" | awk \'{print $2}\'').trim()
|
||||||
|
@ -62,8 +62,8 @@ pipeline {
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'build/libs/**/*.jar', fingerprint: true
|
archiveArtifacts artifacts: 'build/libs/**/*.jar', fingerprint: true
|
||||||
junit 'build/test-results/*/*.xml'
|
//junit 'build/test-results/*/*.xml'
|
||||||
jacoco sourcePattern: '**/src/*/java'
|
//jacoco sourcePattern: '**/src/*/java'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue