From c25c623c71a720fa0e4c21c4ad9f9681830f36e0 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Tue, 6 May 2025 17:24:58 -0700 Subject: [PATCH] Change builds for old versions of Ansible to manual triggers --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 927899b..6e0239c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,6 +49,9 @@ build:python2.7: build:2.10: extends: .build + rules: + - when: manual + allow_failure: false variables: ALPINE_VERSION: 3.14 ANSIBLE_VERSION: '2.10' @@ -56,6 +59,9 @@ build:2.10: build:2.9: extends: .build + rules: + - when: manual + allow_failure: false variables: ALPINE_VERSION: 3.12 ANSIBLE_VERSION: 2.9 -- GitLab