compilation-godot/.gitlab-ci.yml
2022-02-20 18:58:29 +01:00

19 lines
365 B
YAML

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=linuxbsd tools=yes target=release_debug
artifacts:
name: $EXPORT_NAME
paths:
- $EXPORT_NAME
when: manual