From 2b01a49af3cd5d5841e2f22f9f8e19553c7cd67e Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Thu, 13 Oct 2022 19:24:56 +0100 Subject: [PATCH] ci: Add 3h timeout to code-linting jobs --- utils/tests/gitlab-ci-code-linting.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/tests/gitlab-ci-code-linting.yml b/utils/tests/gitlab-ci-code-linting.yml index 5ff851e6a..b13c241b0 100644 --- a/utils/tests/gitlab-ci-code-linting.yml +++ b/utils/tests/gitlab-ci-code-linting.yml @@ -12,6 +12,7 @@ check-style-clang-format: clang-format-14 script: - python3 utils/check-style-clang-format.py . + timeout: 3h clang-tidy: stage: code-linting @@ -30,3 +31,4 @@ clang-tidy: paths: - clang-tidy-errors.log when: on_failure + timeout: 3h