From ca444b44acf6d4d3931131ba32d5b4821129ed96 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Tue, 11 Oct 2022 10:06:36 -0700 Subject: [PATCH] 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 [ROCm/composable_kernel commit: 39abb4704aa829321bd109c4d71b86061d947daf] --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6d9ebc90c3..37e77d29e7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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