Skip to content

Commit 0dda03f

Browse files
committed
Add Gitlab CI configuration example file
1 parent 2644fac commit 0dda03f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.gitlab-ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
stages:
2+
- build
3+
4+
build:linux:
5+
stage: build
6+
script:
7+
- godot -path <path to engine.cfg> -export_debug "Linux X11" game
8+
only:
9+
- master
10+
11+
build:windows:
12+
stage: build
13+
script:
14+
- godot -path <path to engine.cfg> -export_debug "Windows Desktop" game.exe
15+
only:
16+
- master

0 commit comments

Comments
 (0)