From 1d7e6c82cfdfd2d05e4e1ef809625c711f290f08 Mon Sep 17 00:00:00 2001 From: deed Date: Tue, 1 Nov 2022 11:08:54 +0100 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c707817..cbf42d4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,3 +54,18 @@ windows: - if: '$CI_COMMIT_MESSAGE =~ //' when: always +linux64_test: + stage: export + tags: + - Docker + script: + - apt-get update && apt-get install -y mesa-vulkan-drivers + - mkdir -v -p $EXPORT_NAME-linux64-$CI_COMMIT_SHORT_SHA + - godot -v --export-debug --headless "Linux/X11" $EXPORT_NAME-$CI_COMMIT_SHORT_SHA/$EXPORT_NAME-$CI_COMMIT_SHORT_SHA.x86_64 + artifacts: + name: $EXPORT_NAME-$CI_COMMIT_SHORT_SHA-$CI_JOB_NAME + paths: + - $EXPORT_NAME-$CI_COMMIT_SHORT_SHA + expire_in: 4 week + rules: + when: manual