Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

Commit

Permalink
Changes to Jenkinsfile (#451)
Browse files Browse the repository at this point in the history
* Maybe this works?

Changed/Added:

+ Archive artifacts in its own build stage?
+ Gradlew clean
+ Delete the work dir in Paper
+ Always clean Ws after build?

* chmod dir???

i don't see this necessary but maybe?

* do not clean when build publish?

* Remove jenkins workspace?

Maybe this fixes somethings?

* turned off git gc

Co-authored-by: krolik-exe <69214078+krolik-exe@users.noreply.github.com>
  • Loading branch information
Toffikk and krolik-exe authored Apr 12, 2021
1 parent 9237750 commit 920fdd1
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ pipeline {
stage('Cleanup') {
steps {
scmSkip(deleteBuild: true, skipPattern:'.*\\[CI-SKIP\\].*')
sh 'git config --global gc.auto 0'
sh 'rm -rf ./target'
sh 'rm -rf ./Paper/Paper-API ./Paper/Paper-Server ./Paper/work/Spigot/Spigot-API ./Paper/work/Spigot/Spigot-Server'
sh 'rm -rf ./Paper/Paper-API ./Paper/Paper-Server ./Paper/work'
sh 'rm -rf ./Yatopia-API ./Yatopia-Server'
sh 'chmod +x ./gradlew'
sh 'find /home/jenkins/workspace/YatopiaMC_Yatopia_ver_1.16.5 -type d -exec chmod 755 {} \;'
sh 'chmod +x ./gradlew
sh './gradlew clean'
}
}
stage('Init project & submodules') {
Expand Down Expand Up @@ -51,7 +54,7 @@ pipeline {
) {
withCredentials([usernamePassword(credentialsId: 'jenkins-deploy', usernameVariable: 'ORG_GRADLE_PROJECT_mavenUsername', passwordVariable: 'ORG_GRADLE_PROJECT_mavenPassword')]) {
sh '''
./gradlew clean build publish
./gradlew build publish
mkdir -p "./target"
basedir=$(pwd)
paperworkdir="$basedir/Paper/work"
Expand All @@ -69,12 +72,16 @@ pipeline {
}
}
}
post {
success {
archiveArtifacts "target/*.jar"
}
failure {
cleanWs()
stage('Archive Jars') {
steps {
archiveArtifacts(artifacts: 'target/*.jar', fingerprint: true)
}
}
post {
always {
cleanWs()
sh 'rm -rf /home/jenkins/workspace/YatopiaMC_Yatopia_ver_1.16.5'
}
}
}
Expand Down

0 comments on commit 920fdd1

Please sign in to comment.