Add CI
This commit is contained in:
parent
daf2f61d57
commit
125fbfc00d
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal 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
|
Loading…
Reference in a new issue