Skip to content
Merged
10 changes: 7 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -431,15 +431,15 @@ pipeline {
description: "")
booleanParam(
name: "BUILD_SMOKE_FP32",
defaultValue: false,
defaultValue: env.BRANCH_NAME == env.NIGHTLY_BRANCH ? true : false,
description: "")
booleanParam(
name: "BUILD_SMOKE_AUX1",
defaultValue: false,
defaultValue: env.BRANCH_NAME == env.NIGHTLY_BRANCH ? true : false,
description: "")
booleanParam(
name: "BUILD_SMOKE_FP16_BF16_INT8",
defaultValue: false,
defaultValue: env.BRANCH_NAME == env.NIGHTLY_BRANCH ? true : false,
description: "")
booleanParam(
name: "BUILD_FULL_TESTS",
Expand Down Expand Up @@ -526,6 +526,10 @@ pipeline {
Smoke_targets = "check MIOpenDriver"
NOCOMGR_flags = " -DMIOPEN_USE_COMGR=Off"
}
triggers{

cron(env.BRANCH_NAME == env.NIGHTLY_BRANCH ? env.NIGHTLY_SCHEDULE : '')
}
stages{
stage('Build Docker'){
when {
Expand Down