From 8204165d9c319be3340a3f2b4c94d15c8c05d28f Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 14 Apr 2022 18:09:32 +0200 Subject: [PATCH] [BUGFIX] Do not cache the `.Build` directory in GitLab CI (#432) We must not cache this directory. If it is cached, this might cause Composer to (re-)install dependency version that are not valid for the current PHP version, which possibly might break the build. --- .gitlab/pipeline/jobs/build-composer-dependencies.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab/pipeline/jobs/build-composer-dependencies.yml b/.gitlab/pipeline/jobs/build-composer-dependencies.yml index 02da4c5..47fcfbb 100644 --- a/.gitlab/pipeline/jobs/build-composer-dependencies.yml +++ b/.gitlab/pipeline/jobs/build-composer-dependencies.yml @@ -16,4 +16,3 @@ build-composer-dependencies: cache: paths: - .composer - - .Build