-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script for static library job (#526)
* Add script for static library job * Set DBUILD_SHARED_LIBS in install to match rmake.py
- Loading branch information
Showing
2 changed files
with
96 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
#!/usr/bin/env groovy | ||
@Library('rocJenkins@pong') _ | ||
import com.amd.project.* | ||
import com.amd.docker.* | ||
import java.nio.file.Path; | ||
|
||
def runCI = | ||
{ | ||
nodeDetails, jobName-> | ||
|
||
def prj = new rocProject('rocPRIM', 'static') | ||
prj.paths.build_command = './install -c -s' | ||
prj.timeout.compile = 600 | ||
|
||
def nodes = new dockerNodes(nodeDetails, jobName, prj) | ||
|
||
def commonGroovy | ||
|
||
boolean formatCheck = false | ||
|
||
def compileCommand = | ||
{ | ||
platform, project-> | ||
|
||
commonGroovy = load "${project.paths.project_src_prefix}/.jenkins/common.groovy" | ||
commonGroovy.runCompileCommand(platform, project, jobName) | ||
} | ||
|
||
def testCommand = | ||
{ | ||
platform, project-> | ||
|
||
commonGroovy.runTestCommand(platform, project) | ||
} | ||
|
||
def packageCommand = | ||
{ | ||
platform, project-> | ||
|
||
commonGroovy.runPackageCommand(platform, project) | ||
} | ||
|
||
buildProject(prj, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand) | ||
} | ||
|
||
ci: { | ||
String urlJobName = auxiliary.getTopJobName(env.BUILD_URL) | ||
|
||
def propertyList = ["compute-rocm-dkms-no-npi":[pipelineTriggers([cron('0 1 * * 0')])], | ||
"compute-rocm-dkms-no-npi-hipclang":[pipelineTriggers([cron('0 1 * * 0')])], | ||
"rocm-docker":[]] | ||
propertyList = auxiliary.appendPropertyList(propertyList) | ||
|
||
def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu18:['gfx900'],centos7:['gfx906'],centos8:['gfx906'],sles15sp1:['gfx908']])] | ||
jobNameList = auxiliary.appendJobNameList(jobNameList, 'rocPRIM') | ||
|
||
propertyList.each | ||
{ | ||
jobName, property-> | ||
if (urlJobName == jobName) | ||
properties(auxiliary.addCommonProperties(property)) | ||
} | ||
|
||
jobNameList.each | ||
{ | ||
jobName, nodeDetails-> | ||
if (urlJobName == jobName) | ||
stage(jobName) { | ||
runCI(nodeDetails, jobName) | ||
} | ||
} | ||
|
||
// For url job names that are not listed by the jobNameList i.e. compute-rocm-dkms-no-npi-1901 | ||
if(!jobNameList.keySet().contains(urlJobName)) | ||
{ | ||
properties(auxiliary.addCommonProperties([pipelineTriggers([cron('0 1 * * *')])])) | ||
stage(urlJobName) { | ||
runCI([ubuntu16:['gfx906']], urlJobName) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters