2019-07-24 18:50:51 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
tools {
|
|
|
|
maven 'Maven 3'
|
2021-08-17 00:43:22 +00:00
|
|
|
jdk 'Java 16'
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
|
|
|
options {
|
2020-10-07 22:50:39 +00:00
|
|
|
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage ('Build') {
|
|
|
|
steps {
|
2019-11-30 03:05:04 +00:00
|
|
|
sh 'git submodule update --init --recursive'
|
2019-07-24 18:50:51 +00:00
|
|
|
sh 'mvn clean package'
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
success {
|
2020-02-13 20:55:04 +00:00
|
|
|
archiveArtifacts artifacts: 'bootstrap/**/target/*.jar', excludes: 'bootstrap/**/target/original-*.jar', fingerprint: true
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 12:56:47 +00:00
|
|
|
stage ('Deploy') {
|
2019-07-24 18:50:51 +00:00
|
|
|
when {
|
|
|
|
branch "master"
|
|
|
|
}
|
2020-11-17 17:03:12 +00:00
|
|
|
|
2019-07-24 18:50:51 +00:00
|
|
|
steps {
|
2021-01-07 19:51:40 +00:00
|
|
|
rtMavenDeployer(
|
|
|
|
id: "maven-deployer",
|
|
|
|
serverId: "opencollab-artifactory",
|
|
|
|
releaseRepo: "maven-releases",
|
|
|
|
snapshotRepo: "maven-snapshots"
|
|
|
|
)
|
|
|
|
rtMavenResolver(
|
|
|
|
id: "maven-resolver",
|
|
|
|
serverId: "opencollab-artifactory",
|
2021-03-06 18:40:37 +00:00
|
|
|
releaseRepo: "maven-deploy-release",
|
|
|
|
snapshotRepo: "maven-deploy-snapshot"
|
2021-01-07 19:51:40 +00:00
|
|
|
)
|
|
|
|
rtMavenRun(
|
|
|
|
pom: 'pom.xml',
|
2021-11-20 21:34:30 +00:00
|
|
|
goals: 'javadoc:jar source:jar install -pl :core -am -DskipTests',
|
2021-01-07 19:51:40 +00:00
|
|
|
deployerId: "maven-deployer",
|
|
|
|
resolverId: "maven-resolver"
|
|
|
|
)
|
|
|
|
rtPublishBuildInfo(
|
|
|
|
serverId: "opencollab-artifactory"
|
|
|
|
)
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
2021-09-22 12:56:47 +00:00
|
|
|
}
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
2020-10-07 22:50:39 +00: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 18:50:51 +00:00
|
|
|
deleteDir()
|
2019-07-24 20:35:55 +00:00
|
|
|
withCredentials([string(credentialsId: 'geyser-discord-webhook', variable: 'DISCORD_WEBHOOK')]) {
|
2020-12-26 20:40:49 +00: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 20:35:55 +00:00
|
|
|
}
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
2021-01-07 12:21:35 +00:00
|
|
|
success {
|
|
|
|
script {
|
|
|
|
if (env.BRANCH_NAME == 'master') {
|
2021-12-03 16:32:09 +00:00
|
|
|
build propagate: false, wait: false, job: 'GeyserMC/Geyser-Fabric/java-1.18', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
|
2021-01-14 00:15:00 +00:00
|
|
|
build propagate: false, wait: false, job: 'GeyserMC/GeyserConnect/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
|
2021-01-07 12:21:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
2019-11-30 03:05:04 +00:00
|
|
|
}
|