2018-04-07 15:39:51 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
job make exports:
|
|
|
|
stage: deploy
|
|
|
|
before_script:
|
2018-04-07 15:44:23 +00:00
|
|
|
- apt-get install unzip
|
2018-04-07 15:39:51 +00:00
|
|
|
- mkdir -p bin
|
|
|
|
- wget http://downloads.tuxfamily.org/godotengine/3.0.2/Godot_v3.0.2-stable_linux_server.64.zip -O godot3-server.zip
|
|
|
|
- unzip godot3-server.zip
|
|
|
|
- chmod +x godot3-server
|
|
|
|
- mv godot3-server bin/
|
|
|
|
script:
|
|
|
|
- GODOT=./bin/godot3-server make export-all
|
|
|
|
artifacts:
|
|
|
|
untracked: true
|
|
|
|
paths:
|
|
|
|
- build/
|