compilation-godot/.gitlab-ci.yml
2022-01-30 17:43:53 +01:00

19 lines
362 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=server tools=no target=release_debug
artifacts:
name: $EXPORT_NAME
paths:
- $EXPORT_NAME
when: manual