Geyser/Jenkinsfile

110 lines
4.0 KiB
Plaintext
Raw Normal View History

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 {
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
2019-07-24 18:50:51 +00:00
}
stages {
stage ('Build') {
steps {
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-10-17 02:47:26 +00:00
archiveArtifacts artifacts: 'bootstrap/**/build/libs/Geyser-*.jar', fingerprint: true
2019-07-24 18:50:51 +00:00
}
}
}
stage ('Deploy') {
2019-07-24 18:50:51 +00:00
when {
2022-04-24 17:11:50 +00:00
anyOf {
branch "master"
}
2019-07-24 18:50:51 +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",
serverId: "opencollab-artifactory",
releaseRepo: "maven-releases",
snapshotRepo: "maven-snapshots"
)
2022-02-27 22:44:17 +00:00
rtGradleResolver(
id: "GRADLE_RESOLVER",
serverId: "opencollab-artifactory"
)
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: 'artifactoryPublish',
2022-02-27 22:44:17 +00:00
deployerId: "GRADLE_DEPLOYER",
resolverId: "GRADLE_RESOLVER"
)
rtPublishBuildInfo(
serverId: "opencollab-artifactory"
)
2019-07-24 18:50:51 +00:00
}
}
2019-07-24 18:50:51 +00:00
}
post {
always {
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')]) {
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
}
success {
script {
if (env.BRANCH_NAME == 'master') {
build propagate: false, wait: false, job: 'GeyserMC/GeyserConnect/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
}
}
}
2019-07-24 18:50:51 +00:00
}
}