2019-07-24 18:50:51 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
tools {
|
2022-02-27 22:38:55 +00:00
|
|
|
gradle 'Gradle 7'
|
2022-07-12 14:38:57 +00:00
|
|
|
jdk 'Java 17'
|
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'
|
2022-04-24 18:16:39 +00:00
|
|
|
rtGradleRun(
|
|
|
|
usesPlugin: true,
|
|
|
|
tool: 'Gradle 7',
|
|
|
|
buildFile: 'build.gradle.kts',
|
|
|
|
tasks: 'clean build',
|
|
|
|
)
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
|
|
|
post {
|
|
|
|
success {
|
2022-02-27 23:34:05 +00:00
|
|
|
archiveArtifacts artifacts: 'bootstrap/**/build/libs/*.jar', excludes: 'bootstrap/**/build/libs/*-sources.jar,bootstrap/**/build/libs/*-unshaded.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 {
|
2022-04-24 17:11:50 +00:00
|
|
|
anyOf {
|
|
|
|
branch "master"
|
|
|
|
branch "feature/extensions"
|
|
|
|
}
|
2019-07-24 18:50:51 +00:00
|
|
|
}
|
2020-11-17 17:03:12 +00:00
|
|
|
|
2019-07-24 18:50:51 +00:00
|
|
|
steps {
|
2022-02-27 22:44:17 +00:00
|
|
|
rtGradleDeployer(
|
2022-04-24 17:44:46 +00:00
|
|
|
id: "GRADLE_DEPLOYER",
|
2021-01-07 19:51:40 +00:00
|
|
|
serverId: "opencollab-artifactory",
|
|
|
|
releaseRepo: "maven-releases",
|
|
|
|
snapshotRepo: "maven-snapshots"
|
|
|
|
)
|
2022-02-27 22:44:17 +00:00
|
|
|
rtGradleResolver(
|
|
|
|
id: "GRADLE_RESOLVER",
|
|
|
|
serverId: "opencollab-artifactory"
|
2021-01-07 19:51:40 +00:00
|
|
|
)
|
2022-02-27 22:44:17 +00:00
|
|
|
rtGradleRun(
|
2022-04-24 18:16:39 +00:00
|
|
|
usesPlugin: true,
|
2022-02-27 22:44:17 +00:00
|
|
|
tool: 'Gradle 7',
|
|
|
|
rootDir: "",
|
2022-04-24 18:16:39 +00:00
|
|
|
useWrapper: true,
|
2022-02-27 22:44:17 +00:00
|
|
|
buildFile: 'build.gradle.kts',
|
|
|
|
tasks: 'build artifactoryPublish',
|
|
|
|
deployerId: "GRADLE_DEPLOYER",
|
|
|
|
resolverId: "GRADLE_RESOLVER"
|
2021-01-07 19:51:40 +00:00
|
|
|
)
|
|
|
|
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
|
|
|
}
|