Commit c7afb667 authored by Aaron Plattner's avatar Aaron Plattner
Browse files

Add .gitlab-ci.yml



This builds libvdpau and runs the tests, although the only test at the moment is
dlclose and it is skipped because there is no X server running in the Docker
environment.
Signed-off-by: default avatarAaron Plattner <aplattner@nvidia.com>
parent 30924959
image: docker:latest
services:
- docker:dind
before_script:
- echo FROM nwnk/xserver-travis-rawhide:v5 > Dockerfile
- echo ADD . /root >> Dockerfile
- echo WORKDIR /root >> Dockerfile
- docker build -t withgit .
job:
script:
- docker run --volume $HOME/.ccache:/root/.ccache withgit ./test/gitlab-ci.sh
#!/bin/sh
set -x
meson setup build/
meson configure -Dprefix=/usr -Ddri2=true build/
ninja -C build/ install test
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment