"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "9dcd43dd244aa2e7c922b649e7daaf7298a2580c"
Unverified Commit 39abb470 authored by Illia Silin's avatar Illia Silin Committed by GitHub
Browse files

Fix build issue and schedule daily tests with latest staging compiler version. (#470)

* run branch once a day, with release and staging compilers

* add GetDockerImage in Clang stage

* apply the new triggers to the develop branch
parent 40942b90
......@@ -233,6 +233,7 @@ def buildHipClangJob(Map conf=[:]){
def variant = env.STAGE_NAME
def retimage
(retimage, image) = getDockerImage(conf)
gitStatusWrapper(credentialsId: "${status_wrapper_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCmSoftwarePlatform', repo: 'composable_kernel') {
withDockerContainer(image: image, args: dockerOpts + ' -v=/var/jenkins/:/var/jenkins') {
......@@ -548,8 +549,9 @@ def process_results(Map conf=[:]){
}
}
//launch develop branch daily at 23:00 in FULL_QA mode
CRON_SETTINGS = BRANCH_NAME == "develop" ? '''0 23 * * * % RUN_FULL_QA=true''' : ""
//launch develop branch daily at 23:00 UT in FULL_QA mode and at 19:00 UT with latest staging compiler version
CRON_SETTINGS = BRANCH_NAME == "develop" ? '''0 23 * * * % RUN_FULL_QA=true;COMPILER_VERSION=release
0 19 * * * % BUILD_DOCKER=true;COMPILER_VERSION=amd-stg-open''' : ""
pipeline {
agent none
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment