From 672891c1d4596382bf68f854e0db2f43a35ba16e Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Sat, 7 Nov 2020 12:11:47 +0100 Subject: [PATCH] Updated gitlab ci to fix issue with jobs:compile:cache:paths that should be an array Signed-off-by: Louis Vallat --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2fa7c9..dde4db0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,7 +39,8 @@ compile: &compile cache: key: "$CI_COMMIT_REF_NAME" policy: push - paths: .m2/repository + paths: + - .m2/repository # Run tests test: &test @@ -50,7 +51,8 @@ test: &test cache: key: "$CI_COMMIT_REF_NAME" policy: pull - paths: .m2/repository + paths: + - .m2/repository package: image: maven:3.6.3-jdk-14