The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
410 B

sudo: required
language: c
services:
- docker
before_install:
- docker pull jpakkane/mesonci:xenial
# We need to copy the current checkout inside the container,
# because it has the MR id to be tested checked out.
script:
- echo FROM jpakkane/mesonci:xenial > Dockerfile
- echo ADD . /root >> Dockerfile
- docker build -t withgit .
- docker run withgit /bin/sh -c "cd /root && ./run_tests.py"