Skip to content

Commit

Permalink
contrib/intel: test weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
aingerson committed Oct 5, 2023
1 parent 5ea4d9f commit a211142
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import groovy.transform.Field
properties([disableConcurrentBuilds(abortPrevious: true)])
@Field def DO_RUN=true
@Field def TARGET="main"
@Field def SCRIPT_LOCATION="py_scripts/contrib/intel/jenkins"
@Field def SCRIPT_LOCATION="contrib/intel/jenkins"
@Field def RELEASE=false
@Field def BUILD_MODES=["reg", "dbg", "dl"]
@Field def PYTHON_VERSION="3.9"
Expand Down Expand Up @@ -69,8 +69,8 @@ def run_middleware(providers, stage_name, test, partition, node_num, mpi=null,
if (imb_grp)
base_cmd = "${base_cmd} --imb_grp=${imb_grp}"

if (env.WEEKLY.toBoolean())
base_cmd = "${base_cmd} --weekly=${env.WEEKLY}"
if (true)
base_cmd = "${base_cmd} --weekly=true"

for (prov in providers) {
if (prov[1]) {
Expand Down Expand Up @@ -254,9 +254,9 @@ pipeline {
sh "${env.SKIP_PATH}/skip.sh ${env.WORKSPACE} ${TARGET}"
sh "${env.SKIP_PATH}/release.sh ${env.WORKSPACE} ${TARGET}"
if (env.WEEKLY == null) {
weekly = false
weekly = true
} else {
weekly = env.WEEKLY.toBoolean()
weekly = true
}
if (weekly) {
TIMEOUT="21600"
Expand Down Expand Up @@ -519,7 +519,7 @@ pipeline {
dir (RUN_LOCATION) {
def providers = [['tcp', null], ["verbs","rxm"]]
def MPIS = ["mpich"]
if (env.WEEKLY.toBoolean()) {
if (true) {
MPIS = ["impi", "mpich"]
}
for (def mpi in MPIS) {
Expand Down Expand Up @@ -665,7 +665,7 @@ pipeline {
"${env.LOG_DIR}")

summarize("all", verbose=false, release=RELEASE,
send_mail=env.WEEKLY.toBoolean())
send_mail=false)
if (RELEASE) {
save_summary()
}
Expand All @@ -683,7 +683,7 @@ pipeline {
success {
script {
summarize("all", verbose=true, release=false,
send_mail=env.WEEKLY.toBoolean())
send_mail=false)
}
}
aborted {
Expand Down

0 comments on commit a211142

Please sign in to comment.