From 80e3237aa342af44d3933be9421350f971ee171e Mon Sep 17 00:00:00 2001 From: Ryan Roden-Corrent Date: Fri, 4 Jun 2021 09:13:57 -0400 Subject: [PATCH] Remove needless cd from gitlab-ci. It seems that the workdir for gitlab is already inside the cloned repo, so `cd $EXPORT_NAME` will fail. Here's a build that prints `pwd` to demonstrate: https://gitlab.com/rcorre/weekly-game-jam-204/-/jobs/1318895344 Here's a pipeline that passed after removing `cd`: - https://gitlab.com/rcorre/weekly-game-jam-204/-/pipelines/315008027 - https://gitlab.com/rcorre/weekly-game-jam-204/-/commit/1af90b1fa2b9b74abb3e50a022809d700350bc10. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 353eb54..0b9a69d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,8 @@ image: barichello/godot-ci:3.2.3 +# NOTE: the `cd` command in each build stage is not necessary if your +# project.godot is at the repo root + # Cache imported assets between runs cache: key: import-assets