This commit is contained in:
deed 2022-01-30 16:04:20 +01:00
parent daf2f61d57
commit 125fbfc00d

19
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,19 @@
image: khaganat/godot-compil:latest
stages:
- build_godot_server
build-godot-server:
stage: build_godot_server
tags:
- Docker
script:
- git clone https://github.com/godotengine/godot
- cd godot
- scons -j4 platform=server tools=yes target=release_debug
artifacts:
name: $EXPORT_NAME
paths:
- $EXPORT_NAME
when: manual