Skip to content

Commit

Permalink
Re-introduced the WITH_CLEAN_BUILD flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
bvanessen committed Aug 30, 2023
1 parent 8e4552e commit 7d29a79
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,11 @@
stages:
- run-all-clusters

catalyst testing:
stage: run-all-clusters
variables:
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
trigger:
strategy: depend
include: .gitlab/catalyst/pipeline.yml

corona testing:
stage: run-all-clusters
variables:
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/corona/pipeline.yml
Expand All @@ -51,8 +44,9 @@ corona distconv testing:
stage: run-all-clusters
variables:
JOB_NAME: ${CI_PROJECT_NAME}_${CI_PIPELINE_ID}_distconv
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
SPACK_SPECS: "+rocm +distconv"
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/corona/pipeline.yml
Expand All @@ -61,6 +55,7 @@ lassen testing:
stage: run-all-clusters
variables:
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/lassen/pipeline.yml
Expand All @@ -71,6 +66,7 @@ lassen distconv testing:
JOB_NAME: ${CI_PROJECT_NAME}_${CI_PIPELINE_ID}_distconv
SPACK_SPECS: "+cuda +distconv +nvshmem +fft"
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/lassen/multi_stage_pipeline.yml
Expand All @@ -79,6 +75,7 @@ pascal testing:
stage: run-all-clusters
variables:
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/pascal/pipeline.yml
Expand All @@ -88,6 +85,7 @@ pascal compiler testing:
variables:
SPACK_SPECS: "%[email protected] +cuda +half +fft"
BUILD_SCRIPT_OPTIONS: "--no-default-mirrors"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/pascal/pipeline_compiler_tests.yml
Expand All @@ -98,6 +96,8 @@ pascal distconv testing:
JOB_NAME: ${CI_PROJECT_NAME}_${CI_PIPELINE_ID}_distconv
SPACK_SPECS: "%[email protected] +cuda +distconv +fft"
BUILD_SCRIPT_OPTIONS: "--no-default-mirrors"
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/pascal/pipeline.yml
Expand All @@ -106,6 +106,7 @@ tioga testing:
stage: run-all-clusters
variables:
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/tioga/pipeline.yml
Expand All @@ -114,8 +115,9 @@ tioga distconv testing:
stage: run-all-clusters
variables:
JOB_NAME: ${CI_PROJECT_NAME}_${CI_PIPELINE_ID}_distconv
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
SPACK_SPECS: "+rocm +distconv"
WITH_WEEKLY: "${LBANN_CI_RUN_WEEKLY}"
WITH_CLEAN_BUILD: "${LBANN_CI_CLEAN_BUILD}"
trigger:
strategy: depend
include: .gitlab/tioga/pipeline.yml

0 comments on commit 7d29a79

Please sign in to comment.