-
Notifications
You must be signed in to change notification settings - Fork 196
Adding Jenkins job to test Tensile Develop latest #668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
36f5ea1
Adding Jenkins job to tests Tensile Develop latest
saadrahim 9e7d07b
fixing typo
saadrahim 1748a0a
Removed pre-checkin tests
amdkila dd1fc74
Removed -e and Remote Triggers
amdkila fe7d59e
Changing to daily trigger
saadrahim f7b49d0
Fixing brackets
saadrahim eaa4618
Adding .jenkins directory
saadrahim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,139 @@ | ||
| #!/usr/bin/env groovy | ||
| // This shared library is available at https://github.com/ROCmSoftwarePlatform/rocJENKINS/ | ||
| @Library('rocJenkins') _ | ||
|
|
||
| // This is file for internal AMD use. | ||
| // If you are interested in running your own Jenkins, please raise a github issue for assistance. | ||
|
|
||
| import com.amd.project.* | ||
| import com.amd.docker.* | ||
|
|
||
| //////////////////////////////////////////////////////////////////////// | ||
| // Mostly generated from snippet generator 'properties; set job properties' | ||
| // Time-based triggers added to execute nightly tests, eg '30 2 * * *' means 2:30 AM | ||
| properties([ | ||
| pipelineTriggers([cron('0 1 * * *'), [$class: 'PeriodicFolderTrigger', interval: '5m']]), | ||
| buildDiscarder(logRotator( | ||
| artifactDaysToKeepStr: '', | ||
| artifactNumToKeepStr: '', | ||
| daysToKeepStr: '', | ||
| numToKeepStr: '10')), | ||
| disableConcurrentBuilds(), | ||
| [$class: 'CopyArtifactPermissionProperty', projectNames: '*'] | ||
| ]) | ||
|
|
||
| import java.nio.file.Path; | ||
|
|
||
| rocBLASCI: | ||
| { | ||
|
|
||
| def rocblas = new rocProject('rocBLAS') | ||
| // customize for project | ||
| rocblas.paths.build_command = './install.sh -lasm_ci -c -b develop' | ||
|
|
||
| // Define test architectures, optional rocm version argument is available | ||
| def nodes = new dockerNodes(['gfx900 && ubuntu', 'gfx906 && centos7'], rocblas) | ||
|
|
||
| boolean formatCheck = true | ||
|
|
||
| def compileCommand = | ||
| { | ||
| platform, project-> | ||
|
|
||
| project.paths.construct_build_prefix() | ||
|
|
||
| def command | ||
|
|
||
| if(platform.jenkinsLabel.contains('hip-clang')) | ||
| { | ||
| command = """#!/usr/bin/env bash | ||
| set -ex | ||
| cd ${project.paths.project_build_prefix} | ||
| LD_LIBRARY_PATH=/opt/rocm/hcc/lib CXX=/opt/rocm/bin/hipcc ${project.paths.build_command} --hip-clang | ||
| """ | ||
| } | ||
| else | ||
| { | ||
| command = """#!/usr/bin/env bash | ||
| set -ex | ||
| cd ${project.paths.project_build_prefix} | ||
|
amdkila marked this conversation as resolved.
|
||
| LD_LIBRARY_PATH=/opt/rocm/hcc/lib CXX=/opt/rocm/bin/hcc ${project.paths.build_command} | ||
| """ | ||
| } | ||
| platform.runCommand(this, command) | ||
| } | ||
|
|
||
| def testCommand = | ||
| { | ||
| platform, project-> | ||
|
|
||
| def command | ||
|
|
||
| if(platform.jenkinsLabel.contains('centos')) | ||
|
amdkila marked this conversation as resolved.
|
||
| { | ||
| command = """#!/usr/bin/env bash | ||
| set -x | ||
| cd ${project.paths.project_build_prefix}/build/release/clients/staging | ||
| LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG sudo ./rocblas-test --gtest_output=xml --gtest_color=yes --gtest_filter=*nightly*-*known_bug* #--gtest_filter=*nightly* | ||
| """ | ||
|
|
||
| platform.runCommand(this, command) | ||
| junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml" | ||
| } | ||
| else | ||
| { | ||
| command = """#!/usr/bin/env bash | ||
| set -x | ||
| cd ${project.paths.project_build_prefix}/build/release/clients/staging | ||
| LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG ./rocblas-test --gtest_output=xml --gtest_color=yes --gtest_filter=*nightly*-*known_bug* #--gtest_filter=*nightly* | ||
| """ | ||
|
|
||
| platform.runCommand(this, command) | ||
| junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml" | ||
| } | ||
| } | ||
|
|
||
| def packageCommand = | ||
| { | ||
| platform, project-> | ||
|
|
||
| def command | ||
|
|
||
| if(platform.jenkinsLabel.contains('centos')) | ||
| { | ||
| command = """ | ||
| set -x | ||
| cd ${project.paths.project_build_prefix}/build/release | ||
| make package | ||
| mkdir -p package | ||
| mv *.rpm package/ | ||
| rpm -qlp package/*.rpm | ||
| """ | ||
|
|
||
| platform.runCommand(this, command) | ||
| platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.rpm""") | ||
| } | ||
| else if(platform.jenkinsLabel.contains('hip-clang')) | ||
| { | ||
| packageCommand = null | ||
| } | ||
| else | ||
| { | ||
| command = """ | ||
| set -x | ||
| cd ${project.paths.project_build_prefix}/build/release | ||
| make package | ||
| make package_clients | ||
| mkdir -p package | ||
| mv *.deb package/ | ||
| mv clients/*.deb package/ | ||
| """ | ||
|
|
||
| platform.runCommand(this, command) | ||
| platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.deb""") | ||
| } | ||
| } | ||
|
|
||
| buildProject(rocblas, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand) | ||
|
|
||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.