1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

Merge topic 'ci-codespell'

bca69d4272 gitlab-ci: add codespell lint job
bf35f3848a gitlab-ci: rename lint builds to start in lint:
f89c1a559d UseJava: Avoid non-word "compilability" in documentation

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ben Boeckel <ben.boeckel@kitware.com>
Merge-request: !6118
This commit is contained in:
Brad King
2021-05-12 13:19:45 +00:00
committed by Kitware Robot
5 changed files with 19 additions and 6 deletions

View File

@@ -5,5 +5,5 @@ count =
# Disable warnings about binary files
quiet-level = 2
builtin = clear,rare,en-GB_to_en-US
skip = */.git,*/Copyright.txt,*/doxygen.config,*/Modules/Internal/CPack/NSIS.template.in,*/Source/CursesDialog/form/*,*/Source/kwsys/*,*/Tests/RunCMake/CPack/tests/DMG_SLA/German.*,*/Utilities/cm*
skip = */.git,*/build,*/Copyright.txt,*/doxygen.config,*/Modules/Internal/CPack/NSIS.template.in,*/Source/CursesDialog/form/*,*/Source/kwsys/*,*/Tests/RunCMake/CPack/tests/DMG_SLA/German.*,*/Utilities/cm*
ignore-words-list = aci,ake,ans,ba,cconfiguration,conly,dependees,dne,dum,earch,ect,filetest,fo,helpfull,hiden,isnt,keypair,nd,ned,nin,nknown,ot,pard,seh,ser,te,upto,varn,vas,wee

View File

@@ -99,21 +99,27 @@ upload:help:stage:
# Lint builds
build:debian10-iwyu:
lint:codespell:
extends:
- .cmake_codespell_linux
- .linux_builder_tags
- .run_automatically
lint:debian10-iwyu:
extends:
- .debian10_iwyu
- .cmake_build_linux
- .linux_builder_tags
- .run_automatically
build:fedora34-tidy:
lint:fedora34-tidy:
extends:
- .fedora34_tidy
- .cmake_build_linux
- .linux_builder_tags_qt
- .run_automatically
build:fedora34-sphinx:
lint:fedora34-sphinx:
extends:
- .fedora34_sphinx
- .cmake_build_linux

View File

@@ -258,6 +258,13 @@
interruptible: true
.cmake_codespell_linux:
stage: build
extends: .fedora34
script:
- codespell
interruptible: true
.cmake_build_linux:
stage: build

View File

@@ -2,4 +2,4 @@ UseJava-RESOURCES-NAMESPACE
---------------------------
* The :module:`UseJava` module command ``add_jar`` gained option RESOURCES
allow explicit naming of resouces with non-optional namespace.
allow explicit naming of resources with non-optional namespace.

View File

@@ -51,7 +51,7 @@ almost certainly result in confusion.
.. note:: SOURCES
Adding resources via the ``SOURCES`` parameter relies upon a hard-coded
list of file extensions which are tested to determine compilability
list of file extensions which are tested to determine whether they compile
(e.g. File.java). ``SOURCES`` files which match the extensions are compiled.
Files which do not match are treated as resources. To include uncompiled
resources matching those file extensions use the ``RESOURCES`` parameter.