grafX2/.gitlab-ci.yml
Adrien Destugues f04691145b Use Gitlab CI to generate Linux images.
Automatically checks that the code builds fine on Linux
Export the zip with the binaries
2017-05-06 16:03:42 +02:00

14 lines
295 B
YAML

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"