Skip to content
Snippets Groups Projects

Add gitlab ci jobs

Merged Ralph Giles requested to merge ci into master
1 file
+ 29
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 29
0
default:
tags:
- docker
# Image from https://hub.docker.com/_/gcc/ based on Debian
image: gcc:9
autotools:
stage: build
before_script:
- apt-get update &&
apt-get install -y libogg-dev libvorbis-dev
libsdl-dev libpng-dev libtiff-dev
doxygen fig2dev texlive texlive-latex-extra
script:
- ./autogen.sh
- ./configure
- make
- make distcheck
scons:
stage: build
before_script:
- apt-get update &&
apt-get install -y libogg-dev libvorbis-dev
libsdl-dev libpng-dev libtiff-dev
scons
script:
- scons
- scons -c
Loading