Update .gitlab-ci.yml

This commit is contained in:
deed 2022-11-01 11:08:54 +01:00
parent 249acab6dd
commit 1d7e6c82cf

View file

@ -54,3 +54,18 @@ windows:
- if: '$CI_COMMIT_MESSAGE =~ /<debug>/' - if: '$CI_COMMIT_MESSAGE =~ /<debug>/'
when: always 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