From 7bbef588b396afb78375612ff70e6940b9f07670 Mon Sep 17 00:00:00 2001
From: Jan-Hendrik Willms <tleilax+studip@gmail.com>
Date: Fri, 1 Jul 2022 15:00:18 +0000
Subject: [PATCH] run tests only when relevant files have changed, re #606

Closes #606

Merge request studip/studip!768
---
 .gitlab-ci.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 00e8712d928..5392ceee828 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -60,6 +60,16 @@ stages:
       - .caches/eslint-cache
       - .caches/stylelint-cache
 
+.only:
+  php-changes: &php-changes
+    changes:
+      - composer.json
+      - app/controllers/**/*controller.php
+      - db/**/*
+      - lib/**/*
+      - tests/**/*
+      - vendor/**/*
+
 lint-php:
   stage: checks
   needs: []
@@ -122,6 +132,7 @@ lint-css:
 test-unit:
   stage: tests
   needs: [lint-php]
+  only: *php-changes
   cache:
     <<: *composer-cache
     policy: pull
@@ -138,6 +149,7 @@ test-unit:
 test-functional:
   stage: tests
   needs: [lint-php]
+  only: *php-changes
   cache:
     <<: *composer-cache
     policy: pull
@@ -156,6 +168,7 @@ test-functional:
 test-jsonapi:
   stage: tests
   needs: [lint-php]
+  only: *php-changes
   cache:
     <<: *composer-cache
     policy: pull
-- 
GitLab