Use Gitlab CI to generate Linux images.

Automatically checks that the code builds fine on Linux
Export the zip with the binaries
This commit is contained in:
Adrien Destugues 2017-05-06 15:20:24 +02:00
parent 5b6095f0bc
commit f04691145b

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
before_script:
- apt-get update -qq && apt-get install -y -qq libsdl1.2-dev libpng-dev libsdl-ttf2.0-dev libsdl-image1.2-dev liblua5.1-0-dev zip
stages:
- build
job1:
stage: build
script: "cd src && make && make ziprelease"
artifacts:
paths:
- "*.zip"