Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitlab-ci.yml - github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d53bb2b96cbffd69f9edbce8bb9aea8e7bbefce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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