diff options
author | Brad King <brad.king@kitware.com> | 2022-11-16 16:53:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-11-17 13:23:52 (GMT) |
commit | 919ac4c937993929a62684f7ee622f7f687f3ca9 (patch) | |
tree | 14f2e4591889da4e5dd30f589de675c3828ef8da | |
parent | 960a2cf1245f3db4227fe719ae7aefa2029972f3 (diff) | |
download | CMake-919ac4c937993929a62684f7ee622f7f687f3ca9.zip CMake-919ac4c937993929a62684f7ee622f7f687f3ca9.tar.gz CMake-919ac4c937993929a62684f7ee622f7f687f3ca9.tar.bz2 |
ci: add LLVMFlang compiler to Fedora base image
Also explicitly install `clang`.
Issue: #22387
-rwxr-xr-x | .gitlab/ci/docker/fedora37/install_deps.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/fedora37/install_deps.sh b/.gitlab/ci/docker/fedora37/install_deps.sh index f117888..afb8560 100755 --- a/.gitlab/ci/docker/fedora37/install_deps.sh +++ b/.gitlab/ci/docker/fedora37/install_deps.sh @@ -11,8 +11,11 @@ dnf install --setopt=install_weak_deps=False -y \ # Install development tools. dnf install --setopt=install_weak_deps=False -y \ + clang \ clang-tools-extra \ compiler-rt \ + flang \ + flang-devel \ gcc-c++ \ git-core \ make |