"src/vscode:/vscode.git/clone" did not exist on "563e14640bfc5a05c8a41f041ffab752739b6b48"
Unverified Commit 874e6359 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci] ignore CMakeLint errors related to package names (#4801)

* Update test.sh

* Update test.sh

* Update test.sh

* Update FindLibR.cmake

* Update r_package.yml

* Update FindLibR.cmake

* Update r_package.yml
parent 144036f2
......@@ -82,7 +82,7 @@ if [[ $TASK == "lint" ]]; then
echo "Linting C++ code"
cpplint --filter=-build/c++11,-build/include_subdir,-build/header_guard,-whitespace/line_length --recursive ./src ./include ./R-package ./swig ./tests || exit -1
cmake_files=$(find . -name CMakeLists.txt -o -path "*/cmake/*.cmake")
cmakelint --linelength=120 --filter=-readability/wonkycase ${cmake_files} || true
cmakelint --linelength=120 --filter=-convention/filename,-package/stdargs,-readability/wonkycase ${cmake_files} || exit -1
exit 0
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment