From c5db7d1e1045fb04e9fc0d0f3c7babe627a3867a Mon Sep 17 00:00:00 2001 From: ant31 <2t.antoine@gmail.com> Date: Fri, 16 May 2025 12:05:35 +0200 Subject: [PATCH] Remove the ci-ok-to-test: feature is now included in failfast-ci --- .gitlab-ci.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e6c9509f0..a5681c6e7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,33 +59,6 @@ before_script: - pre-commit # lint - vagrant-validate # lint -# For failfast, at least 1 job must be defined in .gitlab-ci.yml -# Premoderated with manual actions -ci-not-authorized: - stage: build - before_script: [] - after_script: [] - rules: - # LGTM or ok-to-test labels - - if: $PR_LABELS =~ /.*,(lgtm|approved|ok-to-test).*|^(lgtm|approved|ok-to-test).*/i - variables: - CI_OK_TO_TEST: '0' - when: always - - if: $CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "trigger" - variables: - CI_OK_TO_TEST: '0' - - if: $CI_COMMIT_BRANCH == "master" - variables: - CI_OK_TO_TEST: '0' - - when: always - variables: - CI_OK_TO_TEST: '1' - script: - - exit $CI_OK_TO_TEST - tags: - - ffci - needs: [] - include: - .gitlab-ci/build.yml - .gitlab-ci/lint.yml