2025-03-08 09:08:16 +01:00
|
|
|
@Library('jenkins-lib')
|
|
|
|
|
|
|
|
import dev.romanjaros.jenkins.utils.ReleaseUtils
|
|
|
|
|
|
|
|
def SKIP = "skip"
|
|
|
|
|
|
|
|
properties([parameters([
|
|
|
|
choice(
|
|
|
|
name: 'RELEASE',
|
2025-03-08 16:16:16 +01:00
|
|
|
choices: [SKIP, 'patch', 'minor', 'major'],
|
|
|
|
description: 'Next new version'
|
2025-03-08 09:08:16 +01:00
|
|
|
),
|
|
|
|
])])
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
def output = "Output"
|
|
|
|
def addon = "CzechQuests"
|
|
|
|
|
2025-03-08 09:08:16 +01:00
|
|
|
def tocFiles = [
|
|
|
|
"classic_era": "CzechQuests_Vanilla.toc",
|
|
|
|
"retail" : "CzechQuests_Mainline.toc"
|
|
|
|
]
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
def readToCVersion = { ->
|
2025-03-08 09:08:16 +01:00
|
|
|
return sh(
|
2025-03-08 16:16:16 +01:00
|
|
|
script: "grep '## Version:' ${tocFiles['classic_era']} | cut -d ' ' -f 3",
|
2025-03-08 09:08:16 +01:00
|
|
|
returnStdout: true
|
|
|
|
).trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
def writeToCVersion = { String tocFile, String current, String next ->
|
|
|
|
def content = readFile(file: tocFile)
|
|
|
|
content = content.replace("## Version: $current", "## Version: $next")
|
|
|
|
writeFile(file: tocFile, text: content)
|
|
|
|
}
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
def increaseVersion = { ->
|
|
|
|
def currentVersion = readToCVersion()
|
|
|
|
def newVersion = ReleaseUtils.increaseVersion(currentVersion, params.RELEASE)
|
|
|
|
writeToCVersion(tocFiles['classic_era'], currentVersion, newVersion)
|
|
|
|
writeToCVersion(tocFiles['retail'], currentVersion, newVersion)
|
|
|
|
}
|
2025-03-08 09:08:16 +01:00
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
def createZipFile = { String game ->
|
2025-03-08 09:08:16 +01:00
|
|
|
def tocFile = tocFiles[game]
|
2025-03-08 16:16:16 +01:00
|
|
|
def version = readToCVersion()
|
2025-03-08 09:08:16 +01:00
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
// prepare output folder
|
|
|
|
sh "mkdir -p $output/$addon/Addon/Data"
|
2025-03-08 09:08:16 +01:00
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
// copy toc file
|
|
|
|
sh "cp $tocFile $output/$addon"
|
2025-03-08 09:08:16 +01:00
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
// copy lue files
|
|
|
|
sh "rsync -av './CzechQuests.lua' ./$output/$addon"
|
|
|
|
sh "rsync -av './Addon/Data/other.lua' ./$output/$addon/Addon/Data"
|
|
|
|
sh "find ./Addon/Data/$game/ -name '*.lua' -exec rsync -av {} ./$output/$addon/Addon/Data/ \\;"
|
|
|
|
sh "find ./Addon/Code/ -name '*.lua' -exec rsync -av {} ./$output/$addon/Addon/Code/ \\;"
|
|
|
|
|
|
|
|
// copy assets
|
|
|
|
sh "find . -name '*.tga' -exec rsync -avR {} $output/$addon \\;"
|
|
|
|
sh "find . -name '*.ttf' -exec rsync -avR {} $output/$addon \\;"
|
2025-03-08 09:08:16 +01:00
|
|
|
|
|
|
|
// create zip
|
2025-03-08 16:16:16 +01:00
|
|
|
def zipFileName = "czech-quests-$game-v${version}.zip"
|
|
|
|
zip zipFile: zipFileName, archive: false, dir: output
|
2025-03-08 09:08:16 +01:00
|
|
|
|
|
|
|
// remove build folder
|
2025-03-08 16:16:16 +01:00
|
|
|
sh "rm -r $output"
|
|
|
|
}
|
2025-03-08 09:08:16 +01:00
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
def pushToGit = { ->
|
|
|
|
def version = readToCVersion()
|
2025-03-08 09:08:16 +01:00
|
|
|
sh "git checkout ${BRANCH_NAME}"
|
2025-03-08 16:16:16 +01:00
|
|
|
sh "git add *.toc"
|
|
|
|
sh "git commit -m 'Release $version'"
|
2025-03-08 09:08:16 +01:00
|
|
|
sh "git push"
|
2025-03-08 16:16:16 +01:00
|
|
|
sh "git tag $version"
|
|
|
|
sh "git push origin $version"
|
|
|
|
}
|
|
|
|
|
|
|
|
def uploadToForgejo = { ->
|
|
|
|
def version = readToCVersion()
|
|
|
|
ForgejoRelease('czech-quests', 'addon', version)
|
2025-03-08 09:08:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MasterJob [:], { ->
|
2025-03-08 16:16:16 +01:00
|
|
|
def version = params.RELEASE
|
|
|
|
if (version == SKIP) {
|
2025-03-08 09:08:16 +01:00
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
checkout scm
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
stageWhen("version") {
|
|
|
|
increaseVersion()
|
2025-03-08 09:08:16 +01:00
|
|
|
}
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
stageWhen('build') {
|
|
|
|
createZipFile("classic_era")
|
|
|
|
createZipFile("retail")
|
2025-03-08 09:08:16 +01:00
|
|
|
forgejoGit()
|
2025-03-08 16:16:16 +01:00
|
|
|
pushToGit()
|
2025-03-08 09:08:16 +01:00
|
|
|
}
|
|
|
|
|
2025-03-08 16:16:16 +01:00
|
|
|
stageWhen('release') {
|
|
|
|
uploadToForgejo()
|
2025-03-08 09:08:16 +01:00
|
|
|
}
|
|
|
|
}
|