blob: 27e0909fa9aa902d8ec6f5c098dbc19ef47c83ab [file] [log] [blame]
chnydad66d6fa2017-06-22 09:34:43 +02001
2/**
3 * Test salt models pipeline
4 * DEFAULT_GIT_REF
5 * DEFAULT_GIT_URL
6 * CREDENTIALS_ID
Jakub Josef107769c2017-08-17 13:38:15 +02007 * CLUSTER_NAME
chnydad66d6fa2017-06-22 09:34:43 +02008 * NODE_TARGET
9 * SYSTEM_GIT_URL
10 * SYSTEM_GIT_REF
azvyagintsev1bcadc42018-10-05 20:13:15 +030011 * DISTRIB_REVISION of apt mirrror to be used (http://mirror.mirantis.com/DISTRIB_REVISION/ by default)
chnydabb6d2a62017-07-31 14:09:16 +020012 * MAX_CPU_PER_JOB
Jakub Josef6e4a09d2017-10-05 16:53:02 +020013 * LEGACY_TEST_MODE
Jakub Josefb1c81632017-10-05 17:19:53 +020014 * RECLASS_IGNORE_CLASS_NOTFOUND
Dmitry Ukovb2aa6db2017-10-23 12:30:31 +040015 * APT_REPOSITORY
16 * APT_REPOSITORY_GPG
chnydad66d6fa2017-06-22 09:34:43 +020017 */
18
19def common = new com.mirantis.mk.Common()
20def gerrit = new com.mirantis.mk.Gerrit()
chnyda4ed3c272017-06-22 14:50:09 +020021def git = new com.mirantis.mk.Git()
chnydac6092a22017-06-22 14:47:10 +020022def ssh = new com.mirantis.mk.Ssh()
chnydad66d6fa2017-06-22 09:34:43 +020023def saltModelTesting = new com.mirantis.mk.SaltModelTesting()
24
azvyagintsev1bcadc42018-10-05 20:13:15 +030025def defaultGitRef = env.DEFAULT_GIT_REF ?: null
26def defaultGitUrl = env.DEFAULT_GIT_URL ?: null
chnydad66d6fa2017-06-22 09:34:43 +020027
azvyagintsev1bcadc42018-10-05 20:13:15 +030028def distribRevision = env.DISTRIB_REVISION ?: 'nightly'
chnydad66d6fa2017-06-22 09:34:43 +020029def checkouted = false
chnyda03f3ad42017-09-19 14:41:07 +020030
31throttle(['test-model']) {
Jakub Josefdb3ddd82018-01-23 13:30:47 +010032 timeout(time: 1, unit: 'HOURS') {
Jakub Josef22815b02018-01-30 16:05:26 +010033 node("python&&docker") {
Jakub Josefa63f9862018-01-11 17:58:38 +010034 try{
35 stage("checkout") {
36 if(defaultGitRef != "" && defaultGitUrl != "") {
37 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
38 } else {
39 throw new Exception("Cannot checkout gerrit patchset, DEFAULT_GIT_URL or DEFAULT_GIT_REF is null")
40 }
41 if(checkouted) {
42 if (fileExists('classes/system')) {
43 if (SYSTEM_GIT_URL == "") {
44 ssh.prepareSshAgentKey(CREDENTIALS_ID)
45 dir('classes/system') {
46 remoteUrl = git.getGitRemote()
47 ssh.ensureKnownHosts(remoteUrl)
48 }
49 ssh.agentSh("git submodule init; git submodule sync; git submodule update --recursive")
50 } else {
51 dir('classes/system') {
52 if (!gerrit.gerritPatchsetCheckout(SYSTEM_GIT_URL, SYSTEM_GIT_REF, "HEAD", CREDENTIALS_ID)) {
53 common.errorMsg("Failed to obtain system reclass with url: ${SYSTEM_GIT_URL} and ${SYSTEM_GIT_REF}")
54 }
chnyda03f3ad42017-09-19 14:41:07 +020055 }
chnydad66d6fa2017-06-22 09:34:43 +020056 }
57 }
58 }
59 }
chnydad66d6fa2017-06-22 09:34:43 +020060
Jakub Josefa63f9862018-01-11 17:58:38 +010061 stage("test node") {
62 if (checkouted) {
63 def workspace = common.getWorkspace()
64 common.infoMsg("Running salt model test for node ${NODE_TARGET} in cluster ${CLUSTER_NAME}")
Denis Egorenko032b8ca2018-09-13 17:00:23 +040065
66 def DockerCName = "${env.JOB_NAME.toLowerCase()}_${env.BUILD_TAG.toLowerCase()}"
67 def config = [
68 'dockerHostname': NODE_TARGET,
69 'clusterName': CLUSTER_NAME,
70 'reclassEnv': workspace,
azvyagintsev1bcadc42018-10-05 20:13:15 +030071 'distribRevision': distribRevision,
Denis Egorenko032b8ca2018-09-13 17:00:23 +040072 'dockerMaxCpus': MAX_CPU_PER_JOB.toInteger(),
73 'ignoreClassNotfound': RECLASS_IGNORE_CLASS_NOTFOUND,
74 'aptRepoUrl': APT_REPOSITORY,
75 'aptRepoGPG': APT_REPOSITORY_GPG,
76 'dockerContainerName': DockerCName,
77 'testContext': 'salt-model-node'
78 ]
79 saltModelTesting.testNode(config)
chnyda3dcf0bd2017-11-30 11:49:24 +010080 }
chnyda03f3ad42017-09-19 14:41:07 +020081 }
Jakub Josefa63f9862018-01-11 17:58:38 +010082 } catch (Throwable e) {
azvyagintsev1c9801f2018-07-07 23:02:53 +030083 // If there was an error or exception thrown, the build failed
84 currentBuild.result = "FAILURE"
85 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
86 throw e
chnydad66d6fa2017-06-22 09:34:43 +020087 }
88 }
chnydad66d6fa2017-06-22 09:34:43 +020089 }
90}