From f04691145bd0b3acecabeca82c88c807b98f20ea Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sat, 6 May 2017 15:20:24 +0200 Subject: [PATCH] Use Gitlab CI to generate Linux images. Automatically checks that the code builds fine on Linux Export the zip with the binaries --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..4ed8d89e --- /dev/null +++ b/.gitlab-ci.yml @@ -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" +