sudo: required
language: c
services:
- dockerbefore_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"