From a9dc5aec47943387fd7e30d8c78d7628d413dbaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kubern=C3=A1t?= Date: Tue, 24 Oct 2023 11:35:44 +0200 Subject: [PATCH] CI: Disable linters for test_rpcvalue --- .github/actions/run-linter/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/run-linter/action.yml b/.github/actions/run-linter/action.yml index 6b44e6689..b660356b2 100644 --- a/.github/actions/run-linter/action.yml +++ b/.github/actions/run-linter/action.yml @@ -28,9 +28,9 @@ runs: run: | BASE_REF="${{github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before}}" git fetch --depth=1 origin "$BASE_REF" - # FIXME: The clang on CI chokes on lambda captures of structured binding variables. Remove the blacklist of - # test_serialportsocket after the CI gets updated. - readarray -t CHANGED_FILES < <(git diff --name-only "$BASE_REF" | grep 'cpp$' | grep -v "libshviotqt/tests/serialportsocket/test_serialportsocket.cpp") + # FIXME: The clang on CI chokes on lambda captures of structured binding variables. Remove the blacklisting of + # the files after the CI gets updated. (AFAIK clang-16). + readarray -t CHANGED_FILES < <(git diff --name-only "$BASE_REF" | grep 'cpp$' | grep -v -e "libshviotqt/tests/serialportsocket/test_serialportsocket.cpp" -e "libshvchainpack/tests/test_rpcvalue.cpp") if [[ "${#CHANGED_FILES[@]}" -eq 0 ]]; then echo "No changed cpp files." exit 0