compilation-godot/.gitlab-ci.yml

20 lines
362 B
YAML
Raw Normal View History

2022-01-30 15:04:20 +00:00
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
2022-02-11 09:55:18 +00:00
- scons -j4 platform=server tools=no target=release_debug
2022-01-30 15:04:20 +00:00
artifacts:
name: $EXPORT_NAME
paths:
- $EXPORT_NAME
when: manual