shithub: dav1d

ref: 24518a7eea17703041830376d829591d18a768cf
dir: /.gitlab-ci.yml/

View raw version
stages:
    - build

build-debian:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
    stage: build
    tags:
        - debian
        - amd64
    script:
        - meson build --buildtype release
        - ninja -v -C build

build-win32:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
    stage: build
    tags:
        - win32
    script:
        - meson build --buildtype release --cross-file /opt/crossfiles/i686-w64-mingw32.meson
        - ninja -v -C build

build-win64:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
    stage: build
    tags:
        - win64
    script:
        - meson build --buildtype release --cross-file /opt/crossfiles/x86_64-w64-mingw32.meson
        - ninja -v -C build