diff options
author | Brad King <brad.king@kitware.com> | 2021-05-07 15:20:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-05-12 11:17:54 (GMT) |
commit | 4ad8bfcd9ba1bf34deb87b5ae67bc24dc3095435 (patch) | |
tree | 7b3c1151e09e4061554c3ce4d8b2c7ec291e368d /.gitlab | |
parent | fa261d1b7de5bf1b5b805955654ca01d17826835 (diff) | |
download | CMake-4ad8bfcd9ba1bf34deb87b5ae67bc24dc3095435.zip CMake-4ad8bfcd9ba1bf34deb87b5ae67bc24dc3095435.tar.gz CMake-4ad8bfcd9ba1bf34deb87b5ae67bc24dc3095435.tar.bz2 |
ci: add codespell to Fedora base image
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci/docker/fedora34/install_deps.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/fedora34/install_deps.sh b/.gitlab/ci/docker/fedora34/install_deps.sh index 4123d87..091bd64 100755 --- a/.gitlab/ci/docker/fedora34/install_deps.sh +++ b/.gitlab/ci/docker/fedora34/install_deps.sh @@ -23,6 +23,10 @@ dnf install --setopt=install_weak_deps=False -y \ qt5-qttools-devel \ qt6-qttools-devel +# Install lint tools. +dnf install --setopt=install_weak_deps=False -y \ + codespell + # Tools needed for the test suite. dnf install --setopt=install_weak_deps=False -y \ findutils \ |