From c4a3e4ade232c0a0dd6e0a1ac34aa568fb6eedad Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Wed, 25 Dec 2019 21:31:36 +0100 Subject: [PATCH] [CI] chmod build directory to testuser to prevent permission issues due to caching --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b32329520..4e5658bf7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,7 @@ test: alias: selenium before_script: - adduser --disabled-password --gecos "Test User" testuser + - chmod -R testuser . script: - sudo -u testuser env TEST_SELENIUM_HUB=http://selenium:4444/wd/hub -- GitLab