diff options
author | Brad King <brad.king@kitware.com> | 2022-03-03 16:58:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-03 17:02:00 (GMT) |
commit | 77bdcc949db26cbe7f0b68e67d1def596b426741 (patch) | |
tree | 9d155d80294544db49eb82b7fea1a2b1c0f3f575 /.gitlab-ci.yml | |
parent | 50b6744c66998e67e73250fe623d52318d345cdf (diff) | |
download | CMake-77bdcc949db26cbe7f0b68e67d1def596b426741.zip CMake-77bdcc949db26cbe7f0b68e67d1def596b426741.tar.gz CMake-77bdcc949db26cbe7f0b68e67d1def596b426741.tar.bz2 |
gitlab-ci: run CUDA and HIP test jobs in any non-MR pipeline
Previously we only ran these in a scheduled nightly pipeline.
We should run them in pipelines on integration branches too,
particularly for the `release` branch.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08fc107..c127bb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -236,7 +236,7 @@ t:cuda9.2-nvidia: - .run_dependent - .needs_centos6_x86_64 variables: - CMAKE_CI_JOB_NIGHTLY: "true" + CMAKE_CI_NO_MR: "true" t:cuda10.2-nvidia: extends: @@ -255,7 +255,7 @@ t:cuda10.2-clang: - .run_dependent - .needs_centos6_x86_64 variables: - CMAKE_CI_JOB_NIGHTLY: "true" + CMAKE_CI_NO_MR: "true" t:hip4.2-radeon: extends: @@ -265,7 +265,7 @@ t:hip4.2-radeon: - .run_dependent - .needs_centos6_x86_64 variables: - CMAKE_CI_JOB_NIGHTLY: "true" + CMAKE_CI_NO_MR: "true" b:fedora35-ninja: extends: |