-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI job to test with static libraries (#441)
* Add ci job to test with static libraries * Set static libs via DBUILD_SHARED_LIBS flag
- Loading branch information
Showing
2 changed files
with
78 additions
and
2 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
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,77 @@ | ||
#!/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('rocRAND', 'static') | ||
|
||
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, debug=false, staticLibrary=true) | ||
} | ||
|
||
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-hipclang":[pipelineTriggers([cron('0 1 * * 0')])]] | ||
propertyList = auxiliary.appendPropertyList(propertyList) | ||
|
||
def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu18:['gfx900'],centos7:['gfx906'],centos8:['gfx906'],sles15sp1:['gfx908']])] | ||
jobNameList = auxiliary.appendJobNameList(jobNameList) | ||
|
||
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) | ||
} | ||
} | ||
} |