diff options
author | Brad King <brad.king@kitware.com> | 2022-11-16 18:59:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-11-18 14:13:51 (GMT) |
commit | 99370e990ead426661170cef2e7299059e6120c9 (patch) | |
tree | bd12bc63c49418bb2b7a8117659f908fe8fcbf59 /.gitlab-ci.yml | |
parent | 572679a62e835833e7989630d77ab2e9802b1485 (diff) | |
download | CMake-99370e990ead426661170cef2e7299059e6120c9.zip CMake-99370e990ead426661170cef2e7299059e6120c9.tar.gz CMake-99370e990ead426661170cef2e7299059e6120c9.tar.bz2 |
gitlab-ci: add jobs to test with Clang and LLVMFlang on Fedora
We already have `t:debian10-{makefiles,ninja}-clang` jobs covering old
versions of Clang with Makefile and Ninja generators. Complement them
with new `t:fedora37-{makefiles,ninja}-clang` jobs covering recent
versions of Clang.
Fedora 37 now packages LLVMFlang, so enable Fortran tests with that
compiler too.
Issue: #22387
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c44b07..24e19c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -196,6 +196,26 @@ t:debian10-makefiles-clang: variables: CMAKE_CI_JOB_NIGHTLY: "true" +t:fedora37-ninja-clang: + extends: + - .fedora37_ninja_clang + - .cmake_test_linux_release + - .linux_builder_tags_qt + - .run_dependent + - .needs_centos6_x86_64 + variables: + CMAKE_CI_JOB_NIGHTLY: "true" + +t:fedora37-makefiles-clang: + extends: + - .fedora37_makefiles_clang + - .cmake_test_linux_release + - .linux_builder_tags_qt + - .run_dependent + - .needs_centos6_x86_64 + variables: + CMAKE_CI_JOB_NIGHTLY: "true" + t:fedora37-makefiles: extends: - .fedora37_makefiles |