2019-07-24 20:50:51 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
tools {
|
|
|
|
maven 'Maven 3'
|
|
|
|
jdk 'Java 8'
|
|
|
|
}
|
|
|
|
options {
|
2020-10-08 00:50:39 +02:00
|
|
|
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage ('Build') {
|
|
|
|
steps {
|
2019-11-30 04:05:04 +01:00
|
|
|
sh 'git submodule update --init --recursive'
|
2019-07-24 20:50:51 +02:00
|
|
|
sh 'mvn clean package'
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
success {
|
2020-02-13 21:55:04 +01:00
|
|
|
archiveArtifacts artifacts: 'bootstrap/**/target/*.jar', excludes: 'bootstrap/**/target/original-*.jar', fingerprint: true
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage ('Deploy') {
|
|
|
|
when {
|
2021-03-23 02:02:20 +01:00
|
|
|
anyOf {
|
|
|
|
branch "master"
|
|
|
|
branch "floodgate-2.0"
|
|
|
|
}
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
2020-11-17 18:03:12 +01:00
|
|
|
|
2019-07-24 20:50:51 +02:00
|
|
|
steps {
|
2021-01-07 20:51:40 +01:00
|
|
|
rtMavenDeployer(
|
|
|
|
id: "maven-deployer",
|
|
|
|
serverId: "opencollab-artifactory",
|
|
|
|
releaseRepo: "maven-releases",
|
|
|
|
snapshotRepo: "maven-snapshots"
|
|
|
|
)
|
|
|
|
rtMavenResolver(
|
|
|
|
id: "maven-resolver",
|
|
|
|
serverId: "opencollab-artifactory",
|
2021-03-06 19:40:37 +01:00
|
|
|
releaseRepo: "maven-deploy-release",
|
|
|
|
snapshotRepo: "maven-deploy-snapshot"
|
2021-01-07 20:51:40 +01:00
|
|
|
)
|
|
|
|
rtMavenRun(
|
|
|
|
pom: 'pom.xml',
|
|
|
|
goals: 'javadoc:jar source:jar install -DskipTests',
|
|
|
|
deployerId: "maven-deployer",
|
|
|
|
resolverId: "maven-resolver"
|
|
|
|
)
|
|
|
|
rtPublishBuildInfo(
|
|
|
|
serverId: "opencollab-artifactory"
|
|
|
|
)
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
2020-10-08 00:50:39 +02:00
|
|
|
script {
|
|
|
|
def changeLogSets = currentBuild.changeSets
|
|
|
|
def message = "**Changes:**"
|
|
|
|
|
|
|
|
if (changeLogSets.size() == 0) {
|
|
|
|
message += "\n*No changes.*"
|
|
|
|
} else {
|
|
|
|
def repositoryUrl = scm.userRemoteConfigs[0].url.replace(".git", "")
|
|
|
|
def count = 0;
|
|
|
|
def extra = 0;
|
|
|
|
for (int i = 0; i < changeLogSets.size(); i++) {
|
|
|
|
def entries = changeLogSets[i].items
|
|
|
|
for (int j = 0; j < entries.length; j++) {
|
|
|
|
if (count <= 10) {
|
|
|
|
def entry = entries[j]
|
|
|
|
def commitId = entry.commitId.substring(0, 6)
|
|
|
|
message += "\n - [`${commitId}`](${repositoryUrl}/commit/${entry.commitId}) ${entry.msg}"
|
|
|
|
count++
|
|
|
|
} else {
|
|
|
|
extra++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extra != 0) {
|
|
|
|
message += "\n - ${extra} more commits"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
env.changes = message
|
|
|
|
}
|
2019-07-24 20:50:51 +02:00
|
|
|
deleteDir()
|
2019-07-24 22:35:55 +02:00
|
|
|
withCredentials([string(credentialsId: 'geyser-discord-webhook', variable: 'DISCORD_WEBHOOK')]) {
|
2020-12-26 21:40:49 +01:00
|
|
|
discordSend description: "**Build:** [${currentBuild.id}](${env.BUILD_URL})\n**Status:** [${currentBuild.currentResult}](${env.BUILD_URL})\n${changes}\n\n[**Artifacts on Jenkins**](https://ci.opencollab.dev/job/GeyserMC/job/Geyser)", footer: 'Open Collaboration Jenkins', link: env.BUILD_URL, successful: currentBuild.resultIsBetterOrEqualTo('SUCCESS'), title: "${env.JOB_NAME} #${currentBuild.id}", webhookURL: DISCORD_WEBHOOK
|
2019-07-24 22:35:55 +02:00
|
|
|
}
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
2021-01-07 13:21:35 +01:00
|
|
|
success {
|
|
|
|
script {
|
|
|
|
if (env.BRANCH_NAME == 'master') {
|
2021-01-14 01:15:00 +01:00
|
|
|
build propagate: false, wait: false, job: 'GeyserMC/Geyser-Fabric/java-1.16', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
|
|
|
|
build propagate: false, wait: false, job: 'GeyserMC/GeyserAndroid/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
|
|
|
|
build propagate: false, wait: false, job: 'GeyserMC/GeyserConnect/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
|
2021-01-07 13:21:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 20:50:51 +02:00
|
|
|
}
|
2019-11-30 04:05:04 +01:00
|
|
|
}
|