mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
1c24afefa5
Note that at the moment source packages are not used. Also, added help script to download the hotfixes for development purposes. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
321 lines
11 KiB
Groovy
321 lines
11 KiB
Groovy
#!groovy
|
|
|
|
/* Copyright (c) Citrix Systems Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms,
|
|
* with or without modification, are permitted provided
|
|
* that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer in the documentation and/or other
|
|
* materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
/* Note: the env variables are either Jenkins built-in variables
|
|
or own variables configured at Manage Jenkins > Configure System */
|
|
|
|
properties([
|
|
[
|
|
$class : 'BuildDiscarderProperty',
|
|
strategy: [$class: 'LogRotator', numToKeepStr: '10', artifactNumToKeepStr: '10']
|
|
],
|
|
parameters(
|
|
[
|
|
stringParam(
|
|
name: 'XC_BRANDING',
|
|
defaultValue: 'citrix',
|
|
description: 'Branding to use. Default value is citrix.'
|
|
),
|
|
stringParam(
|
|
name: 'XC_BRANCH',
|
|
defaultValue: 'master',
|
|
description: 'The branch to build. Default value is master.'
|
|
),
|
|
booleanParam(
|
|
name: 'SKIP_CHECKS',
|
|
defaultValue: false,
|
|
description: 'Skips initial checks for a faster build. Default value is false.'
|
|
),
|
|
booleanParam(
|
|
name: 'SKIP_TESTS',
|
|
defaultValue: false,
|
|
description: 'Skips tests for a faster build. Default value is false.'
|
|
),
|
|
booleanParam(
|
|
name: 'DEV_BUILD',
|
|
defaultValue: false,
|
|
description: 'Skips bumping the global build number and uploading the artifacts. Default value is false.'
|
|
),
|
|
stringParam(
|
|
name: 'BUILD_ON_NODE',
|
|
defaultValue: 'master',
|
|
description: 'The Jenkins node where to build. Default value is master, but ensure you set it to a node disallowing concurrent builds.'
|
|
)
|
|
])
|
|
])
|
|
|
|
for (Object key : params.keySet()) {
|
|
def keyVal = params.get(key)
|
|
println "Build parameter ${key} set to ${keyVal}"
|
|
}
|
|
|
|
node("${params.BUILD_ON_NODE}") {
|
|
try {
|
|
|
|
stage('Bump build number') {
|
|
if (params.DEV_BUILD) {
|
|
println "Running development build. The global build number will not be incremented. The current job's build number will be used."
|
|
} else {
|
|
def calcBn = httpRequest httpMode: 'GET',
|
|
url: "${env.CGI_ENDPOINT}/next-xenadmin?job=${env.JOB_NAME}&number=${env.BUILD_NUMBER}&rev=na&repo=na"
|
|
|
|
def nextBn = calcBn.content.trim()
|
|
println "Got next build number: " + nextBn
|
|
|
|
httpRequest httpMode: 'POST',
|
|
contentType: 'APPLICATION_FORM',
|
|
requestBody: "nextBuildNumber=${nextBn}",
|
|
url: "${env.JOB_URL}nextbuildnumber/submit",
|
|
authentication: 'authentication'
|
|
}
|
|
}
|
|
|
|
stage('Clean workspace') {
|
|
deleteDir()
|
|
}
|
|
|
|
String GIT_COMMIT_XENADMIN =''
|
|
|
|
stage('Checkout sources') {
|
|
checkout([
|
|
$class : 'GitSCM',
|
|
branches : [[name: "refs/heads/${params.XC_BRANCH}"]],
|
|
extensions : [
|
|
[$class: 'RelativeTargetDirectory', relativeTargetDir: 'xenadmin.git'],
|
|
[$class: 'LocalBranch', localBranch: '**'],
|
|
[$class: 'CleanCheckout'],
|
|
[$class: 'CloneOption', noTags: false, reference: '', shallow: true]
|
|
],
|
|
userRemoteConfigs: scm.userRemoteConfigs
|
|
])
|
|
|
|
GIT_COMMIT_XENADMIN = bat(
|
|
returnStdout: true,
|
|
script: """
|
|
@echo off
|
|
cd ${env.WORKSPACE}\\xenadmin.git
|
|
git rev-parse HEAD
|
|
"""
|
|
).trim()
|
|
|
|
GString BRANDING_REMOTE = "${env.CODE_ENDPOINT}/xs/branding.git"
|
|
|
|
def branchExistsOnBranding = bat(
|
|
returnStatus: true,
|
|
script: """git ls-remote --heads ${BRANDING_REMOTE} | grep ${params.XC_BRANCH}"""
|
|
)
|
|
String branchToCloneOnBranding = (branchExistsOnBranding == 0) ? params.XC_BRANCH : 'master'
|
|
|
|
bat """git clone -b ${branchToCloneOnBranding} ${BRANDING_REMOTE} ${env.WORKSPACE}\\branding.git"""
|
|
|
|
if (params.XC_BRANDING != 'citrix') {
|
|
|
|
println "Overwriting Branding folder"
|
|
GString BRAND_REMOTE = "${env.CODE_ENDPOINT}/xsc/xenadmin-branding.git"
|
|
|
|
def branchExistsOnBrand = bat(
|
|
returnStatus: true,
|
|
script: """git ls-remote --heads ${BRAND_REMOTE} | grep ${params.XC_BRANCH}"""
|
|
)
|
|
String branchToClone = (branchExistsOnBrand == 0) ? params.XC_BRANCH : 'master'
|
|
|
|
bat """
|
|
git clone -b ${branchToClone} ${BRAND_REMOTE} ${env.WORKSPACE}\\xenadmin-branding.git
|
|
rmdir /s /q "${env.WORKSPACE}\\xenadmin.git\\Branding"
|
|
xcopy /e /y "${env.WORKSPACE}\\xenadmin-branding.git\\${XC_BRANDING}\\*" "${env.WORKSPACE}\\xenadmin.git\\Branding\\"
|
|
"""
|
|
}
|
|
}
|
|
|
|
stage('Download dependencies') {
|
|
|
|
GString remoteDotnet = GString.EMPTY
|
|
remoteDotnet += readFile("${env.WORKSPACE}\\xenadmin.git\\packages\\DOTNET_BUILD_LOCATION").trim()
|
|
GString downloadSpec = GString.EMPTY
|
|
downloadSpec += readFile("${env.WORKSPACE}\\xenadmin.git\\mk\\deps-map.json").trim().replaceAll("@REMOTE_DOTNET@", remoteDotnet)
|
|
|
|
def server = Artifactory.server('repo')
|
|
server.download(downloadSpec)
|
|
|
|
println "Branding for " + params.XC_BRANDING
|
|
|
|
if (params.XC_BRANDING == 'citrix') {
|
|
println "Downloading hotfixes."
|
|
|
|
GString hotFixSpec = GString.EMPTY
|
|
hotFixSpec += readFile("${env.WORKSPACE}\\xenadmin.git\\mk\\hotfix-map.json").trim()
|
|
server.download(hotFixSpec)
|
|
}
|
|
}
|
|
|
|
stage('Run checks') {
|
|
if (params.SKIP_CHECKS) {
|
|
println "Skipping initial checks on request."
|
|
} else {
|
|
|
|
List<String> list = ["copyrightcheck/copyrightcheck.sh", "i18ncheck/i18ncheck.sh", "spellcheck/spellcheck.sh"]
|
|
for (String item : list) {
|
|
bat """
|
|
cd ${env.WORKSPACE}\\xenadmin.git\\devtools
|
|
sh "${item}"
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
bat """
|
|
cd ${env.WORKSPACE}
|
|
sh "xenadmin.git/mk/xenadmin-build.sh"
|
|
"""
|
|
}
|
|
|
|
stage('Create manifest') {
|
|
GString manifestFile = "${env.WORKSPACE}\\output\\xenadmin-manifest.txt"
|
|
File file = new File(manifestFile)
|
|
|
|
String branchInfo = (params.XC_BRANCH == 'master') ? 'trunk' : params.XC_BRANCH
|
|
file << "@branch=${branchInfo}\n"
|
|
file << "xenadmin xenadmin.git ${GIT_COMMIT_XENADMIN}\n"
|
|
|
|
def SERVER_BRANDING_TIP = bat(
|
|
returnStdout: true,
|
|
script: """
|
|
@echo off
|
|
cd ${env.WORKSPACE}\\branding.git
|
|
git rev-parse HEAD
|
|
"""
|
|
).trim()
|
|
|
|
file << "branding branding.git ${SERVER_BRANDING_TIP}\n"
|
|
|
|
if (params.XC_BRANDING != 'citrix') {
|
|
def XENADMIN_BRANDING_TIP = bat(
|
|
returnStdout: true,
|
|
script: """
|
|
@echo off
|
|
cd ${env.WORKSPACE}\\xenadmin-branding.git
|
|
git rev-parse HEAD
|
|
"""
|
|
).trim()
|
|
|
|
file << "xenadmin-branding xenadmin-branding.git ${XENADMIN_BRANDING_TIP}\n"
|
|
}
|
|
|
|
//for the time being we download a fixed version of the ovf fixup iso, hence put this in the manifest
|
|
file << "xencenter-ovf xencenter-ovf.git 21d3d7a7041f15abfa73f916e5fd596fd7e610c4\n"
|
|
file << "chroot-lenny chroots.hg 1a75fa5848e8\n"
|
|
|
|
file << readFile("${env.WORKSPACE}\\scratch\\dotnet-packages-manifest.txt").trim()
|
|
}
|
|
|
|
stage('Run tests') {
|
|
|
|
if (params.XC_BRANDING != 'citrix') {
|
|
println "Testing package-and-sign script"
|
|
bat """
|
|
cd ${env.WORKSPACE}
|
|
mkdir TestXenAdminUnsigned
|
|
forfiles /p output /s /m *Unsigned.zip /c "cmd /c unzip -q -o @file -d ..\\TestXenAdminUnsigned"
|
|
forfiles /p TestXenAdminUnsigned /s /m package-and-sign.sh /c "cmd /c sh @file"
|
|
"""
|
|
}
|
|
|
|
if (params.SKIP_TESTS) {
|
|
println "Skipping tests on request."
|
|
} else {
|
|
timeout(time: 60, unit: 'MINUTES') {
|
|
|
|
bat """
|
|
taskkill /f /fi "imagename eq nunit*"
|
|
|
|
nunit3-console /labels=all /process=separate /timeout=40000 /where "cat==Unit" ^
|
|
/out="${env.WORKSPACE}\\output\\XenAdminTests.out" ^
|
|
/result="${env.WORKSPACE}\\output\\XenAdminTests.xml" ^
|
|
"${env.WORKSPACE}\\xenadmin.git\\XenAdminTests\\bin\\Release\\XenAdminTests.dll" ^
|
|
> ${env.WORKSPACE}\\output\\nunit3-console.out
|
|
|
|
type ${env.WORKSPACE}\\output\\nunit3-console.out
|
|
"""
|
|
|
|
def text = readFile("${env.WORKSPACE}\\output\\nunit3-console.out")
|
|
assert text.contains('Failed: 0')
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Upload') {
|
|
if (!params.DEV_BUILD) {
|
|
dir("${env.WORKSPACE}\\output") {
|
|
|
|
if (params.XC_BRANDING == 'citrix') {
|
|
bat """del /f /q "${env.WORKSPACE}\\output\\*Unsigned.zip" """
|
|
}
|
|
|
|
def server = Artifactory.server('repo')
|
|
def buildInfo = Artifactory.newBuildInfo()
|
|
buildInfo.env.filter.addInclude("*")
|
|
buildInfo.env.collect()
|
|
|
|
GString artifactMeta = "build.name=${env.JOB_NAME};build.number=${env.BUILD_NUMBER};vcs.url=${env.CHANGE_URL};vcs.branch=${params.XC_BRANCH};vcs.revision=${GIT_COMMIT_XENADMIN}"
|
|
|
|
// IMPORTANT: do not forget the slash at the end of the target path!
|
|
GString targetPath = "xc-local-build/xencenter/${params.XC_BRANCH}/${params.XC_BRANDING}/${env.BUILD_NUMBER}/"
|
|
GString uploadSpec = """ {
|
|
"files": [
|
|
{ "pattern": "*", "flat": "false", "target": "${targetPath}", "props": "${artifactMeta}" }
|
|
]}
|
|
"""
|
|
|
|
def buildInfo_upload = server.upload(uploadSpec)
|
|
buildInfo.append buildInfo_upload
|
|
server.publishBuildInfo buildInfo
|
|
}
|
|
}
|
|
}
|
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
} catch (Exception ex) {
|
|
currentBuild.result = 'FAILURE'
|
|
throw ex as java.lang.Throwable
|
|
} finally {
|
|
currentBuild.displayName = "${params.XC_BRANCH}-${params.XC_BRANDING}-${env.BUILD_NUMBER}"
|
|
step([
|
|
$class : 'Mailer',
|
|
notifyEveryUnstableBuild: true,
|
|
recipients : "${env.XENCENTER_DEVELOPERS}",
|
|
sendToIndividuals : true])
|
|
}
|
|
}
|