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: 44a4ac25605bdeeed3eb6d357ad72a22aefbdd8d (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
stages:
    - build
    - test

build-debian:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: build
    tags:
        - debian
        - amd64
    script:
        - env CFLAGS='-Werror' meson build --buildtype release
        - ninja -C build
        - cd build && meson test -v

build-debian-static:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: build
    tags:
        - debian
        - amd64
    script:
        - env CFLAGS='-Werror' meson build --buildtype release --default-library static
        - ninja -C build
        - cd build && meson test -v

build-win32:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: build
    tags:
        - win32
    script:
        - env CFLAGS='-Werror'
            meson build --buildtype release
                        --libdir lib
                        --prefix "$(pwd)/build/dav1d_install"
                        --cross-file /opt/crossfiles/i686-w64-mingw32.meson
                        -Ddefault_library=both
        - ninja -C build
        - ninja -C build install
    artifacts:
        name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
        paths:
            - build/dav1d_install/
        expire_in: 1 week

build-win64:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: build
    tags:
        - win64
    script:
        - env CFLAGS='-Werror'
            meson build --buildtype release
                        --libdir lib
                        --prefix "$(pwd)/build/dav1d_install"
                        --cross-file /opt/crossfiles/x86_64-w64-mingw32.meson
                        -Ddefault_library=both
        - ninja -C build
        - ninja -C build install
    artifacts:
        name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
        paths:
            - build/dav1d_install/
        expire_in: 1 week

build-debian-aarch64:
    stage: build
    tags:
        - aarch64
        - debian
    script:
        - env CFLAGS='-Werror' meson build --buildtype release
        - ninja -C build
        - cd build && meson test -v

build-debian-aarch64-clang-5:
    stage: build
    tags:
        - aarch64
        - clang5
        - debian
    script:
        - env CC=clang-5.0 CFLAGS='-integrated-as' meson build --buildtype release
        - ninja -C build
        - cd build && meson test -v

build-macos:
    stage: build
    tags:
        - macos
    script:
        - env CFLAGS='-Werror' meson build --buildtype release -Ddefault_library=both
        - ninja -C build
        - cd build && meson test -v

build-debian-werror:
    image: dav1d-debian-aarch64:201810240631
    stage: build
    tags:
        - aarch64
        - debian
    script:
        - env CC='clang-7' CFLAGS='-Werror' meson build --buildtype debug
        - ninja -C build

test-debian:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: test
    tags:
        - debian
        - amd64
    cache:
        key: testdata.git
        paths:
            - cache/dav1d-test-data.git/
    script:
        - test -d cache || mkdir cache
        - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master
        - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git
        - git clone cache/dav1d-test-data.git tests/dav1d-test-data
        - meson build --buildtype release -Dtestdata_tests=true
        - ninja -C build
        - cd build && time meson test -v

test-debian-asan:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: test
    tags:
        - debian
        - amd64
    cache:
        key: testdata.git
        paths:
            - cache/dav1d-test-data.git/
    variables:
        ASAN_OPTIONS: 'detect_leaks=0'
    script:
        - test -d cache || mkdir cache
        - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master
        - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git
        - git clone cache/dav1d-test-data.git tests/dav1d-test-data
        - meson build --buildtype debugoptimized -Dtestdata_tests=true -Db_sanitize=address -Dbuild_asm=false
        - ninja -C build
        - cd build && time meson test -v

test-debian-msan:
    image: dav1d-debian-aarch64:201810300753
    stage: test
    tags:
        - debian
        - aarch64
    cache:
        key: testdata.git
        paths:
            - cache/dav1d-test-data.git/
    script:
        - test -d cache || mkdir cache
        - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master
        - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git
        - git clone cache/dav1d-test-data.git tests/dav1d-test-data
        - env CC='clang-7' meson build --buildtype debugoptimized -Dtestdata_tests=true -Db_sanitize=memory -Db_lundef=false -Dbuild_asm=false
        - ninja -C build
        - cd build && time meson test -v

test-debian-ubsan:
    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
    stage: test
    tags:
        - debian
        - amd64
    cache:
        key: testdata.git
        paths:
            - cache/dav1d-test-data.git/
    script:
        - test -d cache || mkdir cache
        - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master
        - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git
        - git clone cache/dav1d-test-data.git tests/dav1d-test-data
        - env CC=clang meson build --buildtype debugoptimized -Dtestdata_tests=true -Db_sanitize=undefined -Db_lundef=false -Dbuild_asm=false
        - ninja -C build
        - cd build && time meson test -v