From 2ee350976e20db36c12cf30db7727526b6903032 Mon Sep 17 00:00:00 2001
From: Maarten de Waard <maarten@greenhost.nl>
Date: Tue, 20 Apr 2021 15:59:10 +0200
Subject: [PATCH] fix dependency problem in CI

---
 .gitlab-ci.yml | 17 +++--------------
 1 file changed, 3 insertions(+), 14 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ab30333d6..c54b5bb4d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -353,13 +353,8 @@ test-dns:
     - *debug_information
     - cd ansible/
     - pytest -v -s -m 'dns' --connection=ansible --ansible-inventory=${CLUSTER_DIR}/inventory.yml --hosts='ansible://*'
-  rules:
-    - changes:
-        - .gitlab-ci.yml
-        - ansible/**/*
-        - flux/**/*
-        - test/**/*
-        - openappstack/**/*
+  extends:
+    - .general_rules
   interruptible: true
 
 setup-openappstack:
@@ -653,15 +648,9 @@ testinfra:
     - *debug_information
     - cd ansible/
     - pytest -v -s -m 'testinfra' --connection=ansible --ansible-inventory=${CLUSTER_DIR}/inventory.yml --hosts='ansible://*'
-  rules:
-    - changes:
-        - .gitlab-ci.yml
-        - ansible/**/*
-        - flux/**/*
-        - test/**/*
-        - openappstack/**/*
   extends:
     - .ssh_setup
+    - .general_rules
   interruptible: true
 
 prometheus-stack-alerts:
-- 
GitLab