ci: Increase cerbero trigger timeout to 3h
[platform/upstream/gstreamer.git] / .gitlab-ci.yml
1 include:
2   - remote: "https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/14731f78c23c7b523a85a26a068ade9ac1ecd2f3/templates/fedora.yml"
3   - remote: "https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/14731f78c23c7b523a85a26a068ade9ac1ecd2f3/templates/debian.yml"
4
5 stages:
6   - 'trigger'
7   - 'build docker'
8   - 'preparation'
9   - 'pre-build'
10   - 'build'
11   - 'test'
12   # Use the resulting binaries
13   - 'integrate'
14
15 variables:
16   GIT_DEPTH: 1
17
18   # Branch to track for modules that have no ref specified in the manifest
19   GST_UPSTREAM_BRANCH: 'main'
20   ORC_UPSTREAM_BRANCH: 'master'
21
22   ###
23   # IMPORTANT
24   # These are the version tags for the docker images the CI runs against.
25   # If you are hacking on them or need a them to rebuild, its enough
26   # to change any part of the string of the image you want.
27   ###
28   FEDORA_TAG:  '2021-12-03.1'
29   INDENT_TAG: '2021-10-04.0'
30   WINDOWS_TAG: "2022-01-26.3"
31
32   GST_UPSTREAM_REPO: 'gstreamer/gstreamer'
33   FDO_UPSTREAM_REPO: 'gstreamer/gstreamer'
34
35   FEDORA_AMD64_SUFFIX:  'amd64/fedora'
36   INDENT_AMD64_SUFFIX: 'amd64/gst-indent'
37   WINDOWS_AMD64_SUFFIX: 'amd64/windows'
38   WINDOWS_RUST_AMD64_SUFFIX: 'amd64/windows-rust'
39
40   FEDORA_DOCS_IMAGE: "registry.freedesktop.org/gstreamer/gst-ci/amd64/fedora:2020-07-03.0-master"
41   WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
42   WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
43
44   RUST_MINIMUM_VERSION: '1.54.0'
45   RUST_LATEST_VERSION: '1.55.0'
46
47   WINDOWS_RUST_MINIMUM_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_MINIMUM_VERSION"
48   WINDOWS_RUST_MINIMUM_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_MINIMUM_VERSION"
49
50   WINDOWS_RUST_LATEST_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_LATEST_VERSION"
51   WINDOWS_RUST_LATEST_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_LATEST_VERSION"
52
53   MESON_BUILDTYPE_ARGS: --default-library=both
54   DEFAULT_MESON_ARGS: >
55     -Dlibnice:tests=disabled
56     -Dlibnice:examples=disabled
57     -Dopenh264:tests=disabled
58     -Dpygobject:tests=false
59     -Dpython=enabled
60     -Dlibav=enabled
61     -Dugly=enabled
62     -Dbad=enabled
63     -Ddevtools=enabled
64     -Dges=enabled
65     -Drtsp_server=enabled
66     -Dvaapi=enabled
67     -Dsharp=disabled
68     -Dgpl=enabled
69
70   MESON_GST_WERROR: >
71     -Dgstreamer:werror=true
72     -Dgst-plugins-base:werror=true
73     -Dgst-plugins-good:werror=true
74     -Dgst-plugins-ugly:werror=true
75     -Dgst-plugins-bad:werror=true
76     -Dgst-rtsp-server:werror=true
77     -Dgst-libav:werror=true
78     -Dgst-examples:werror=true
79     -Dgst-editing-services:werror=true
80     -Dgst-docs:werror=true
81     -Dgst-omx:werror=true
82     -Dgst-devtools:werror=true
83     -Dgst-python:werror=true
84     -Dgstreamer-vaapi:werror=true
85     -Dgstreamer-sharp:werror=true
86
87 workflow:
88   # https://docs.gitlab.com/ee/ci/yaml/index.html#switch-between-branch-pipelines-and-merge-request-pipelines
89   rules:
90     - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
91       variables:
92         GIT_FETCH_EXTRA_FLAGS: '--no-tags'
93     - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"
94       when: never
95     - if: '$CI_COMMIT_TAG'
96     - if: '$CI_COMMIT_BRANCH'
97       variables:
98         GIT_FETCH_EXTRA_FLAGS: '--no-tags'
99
100 #
101 # Global CI policy
102 #
103 # This can be used to configure global behaviour our our jobs.
104 #
105 default:
106   retry:
107     max: 2
108     when:
109       - 'runner_system_failure'
110       - 'stuck_or_timeout_failure'
111       - 'scheduler_failure'
112       - 'api_failure'
113   interruptible: true
114
115 # This is an empty job that is used to trigger the pipeline.
116 trigger:
117   image: alpine:latest
118   stage: 'trigger'
119   variables:
120     GIT_STRATEGY: none
121   script:
122     - echo "Trigger job done, now running the pipeline."
123   rules:
124     # If the MR is assigned to the Merge bot, trigger the pipeline automatically
125     - if: '$CI_MERGE_REQUEST_ASSIGNEES == "gstreamer-merge-bot"'
126     # Alway run tests post merged
127     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
128     # When the assignee isn't the merge bot, require an explicit action to trigger the pipeline
129     # to avoid wasting CI resources
130     - if: '$CI_MERGE_REQUEST_ASSIGNEES != "gstreamer-merge-bot"'
131       when: 'manual'
132       allow_failure: false
133
134 .fedora image:
135   variables:
136     FDO_DISTRIBUTION_VERSION: '31'
137     FDO_REPO_SUFFIX: "$FEDORA_AMD64_SUFFIX"
138     FDO_DISTRIBUTION_TAG: "$FEDORA_TAG-$GST_UPSTREAM_BRANCH"
139     FDO_DISTRIBUTION_EXEC: 'GIT_BRANCH=$CI_COMMIT_REF_NAME GIT_URL=$CI_REPOSITORY_URL bash ci/docker/fedora/prepare.sh'
140
141 fedora amd64 docker:
142   extends:
143     - '.fedora image'
144     - '.fdo.container-build@fedora'
145   stage: 'build docker'
146   needs:
147     - "trigger"
148   tags:
149     - 'packet.net'
150
151 .gst-indent image:
152   variables:
153     FDO_DISTRIBUTION_VERSION: 'stretch'
154     FDO_REPO_SUFFIX: "$INDENT_AMD64_SUFFIX"
155     FDO_DISTRIBUTION_TAG: "$INDENT_TAG-$GST_UPSTREAM_BRANCH"
156     FDO_DISTRIBUTION_PACKAGES: 'curl indent git findutils'
157
158 gst-indent amd64 docker:
159   extends:
160     - '.gst-indent image'
161     - '.fdo.container-build@debian'
162   stage: 'build docker'
163   # Do not depend on the trigger, as we want to run indent always
164   needs: []
165
166 windows amd64 docker:
167   stage: "build docker"
168   needs:
169     - "trigger"
170   variables:
171     # Unlike the buildah/linux jobs, this file
172     # needs to be relative to docker/windows/ subdir
173     # as it makes life easier in the powershell script
174     #
175     # We also don't need a CONTEXT_DIR var as its also
176     # hardcoded to be docker/windows/
177     DOCKERFILE: "ci/docker/windows/Dockerfile"
178   tags:
179     - windows
180     - shell
181     - "1809"
182   script:
183     # We need to pass an array and to resolve the env vars, so we can't use a variable:
184     - $DOCKER_BUILD_ARGS = @("--build-arg", "DEFAULT_BRANCH=$GST_UPSTREAM_BRANCH")
185
186     - "& ci/docker/windows/container.ps1 $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_IMAGE $WINDOWS_UPSTREAM_IMAGE $DOCKERFILE"
187     - |
188       if (!($?)) {
189         echo "Failed to build the image"
190         Exit 1
191       }
192
193 .windows rust docker build:
194   stage: 'build docker'
195   needs:
196     - job: 'windows amd64 docker'
197       artifacts: false
198   rules:
199     - if: '$CI_PROJECT_NAME == "gst-ci"'
200   variables:
201     # Unlike the buildah/linux jobs, this file
202     # needs to be relative to docker/windows/ subdir
203     # as it makes life easier in the powershell script
204     #
205     # We also don't need a CONTEXT_DIR var as its also
206     # hardcoded to be docker/windows/
207     DOCKERFILE: 'docker/windows/rust.Dockerfile'
208   tags:
209     - 'windows'
210     - 'shell'
211     - '1809'
212   script:
213     # We need to pass an array and to resolve the env vars, so we can't use a variable:
214     - $DOCKER_BUILD_ARGS = @("--build-arg", "DEFAULT_BRANCH=$GST_UPSTREAM_BRANCH", "--build-arg", "BASE_IMAGE=$WINDOWS_IMAGE", "--build-arg", "RUST_VERSION=$RUST_VERSION")
215
216     - $env:WINDOWS_CONTAINER_SCRIPT_PATH = "$env:CI_PROJECT_DIR\container.ps1"
217     - echo "Fetching $env:WINDOWS_CONTAINER_SCRIPT_URL"
218     - Invoke-WebRequest -Uri $env:WINDOWS_CONTAINER_SCRIPT_URL -OutFile $env:WINDOWS_CONTAINER_SCRIPT_PATH
219
220     - "& $env:WINDOWS_CONTAINER_SCRIPT_PATH $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $RUST_IMAGE $RUST_UPSTREAM_IMAGE $DOCKERFILE"
221     - |
222       if (!($?)) {
223         echo "Failed to build the image"
224         Exit 1
225       }
226
227 windows rust amd64 docker latest stable:
228   extends: '.windows rust docker build'
229   variables:
230     RUST_IMAGE: !reference [variables, "WINDOWS_RUST_LATEST_IMAGE"]
231     RUST_UPSTREAM_IMAGE: !reference [variables, "WINDOWS_RUST_LATEST_UPSTREAM_IMAGE"]
232     RUST_VERSION: !reference [variables, "RUST_LATEST_VERSION"]
233
234 windows rust amd64 docker minimum supported version:
235   extends: '.windows rust docker build'
236   variables:
237     RUST_IMAGE: !reference [variables, "WINDOWS_RUST_MINIMUM_IMAGE"]
238     RUST_UPSTREAM_IMAGE: !reference [variables, "WINDOWS_RUST_MINIMUM_UPSTREAM_IMAGE"]
239     RUST_VERSION: !reference [variables, "RUST_MINIMUM_VERSION"]
240
241
242
243 # ---- Preparation ----- #
244 #
245 # gst-indent!!
246 #
247 gst indent:
248   extends:
249     - '.gst-indent image'
250     - '.fdo.suffixed-image@debian'
251   stage: 'preparation'
252   needs:
253     - job: 'gst-indent amd64 docker'
254       artifacts: false
255   script:
256     # man indent. grep RETURN VALUE, grab a beer on my behalf...
257     - indent --version || true
258     - ./scripts/gst-indent-all
259     - |
260       if git diff --quiet -- ':!subprojects/gst-integration-testsuites/medias' .; then
261           echo "Code is properly formatted"
262       else
263           git diff --color=always -- ':!subprojects/gst-integration-testsuites/medias' .
264           echo 'style diverges, please run gst-indent first'
265           exit 1
266       fi
267
268 #
269 # build setup templates
270 #
271 .build_template: &build
272   - ci/scripts/handle-subprojects-cache.py subprojects/
273   # Update subprojects to respect `.wrap` content
274   - meson subprojects update --reset
275   - echo $MESON_ARGS
276   - meson build/ $MESON_ARGS
277   - ninja -C build/
278   - ccache --show-stats
279
280 .build_ccache_vars:
281   variables:
282     CCACHE_COMPILERCHECK: 'content'
283     CCACHE_COMPRESS: 'true'
284     CCACHE_BASEDIR: '/cache/gstreamer/gstreamer'
285     CCACHE_DIR: '/cache/gstreamer/gstreamer/ccache/'
286     # shared across everything really
287     CCACHE_MAXSIZE: '10G'
288     CARGO_HOME: '/cache/gstreamer/cargo'
289
290 .base_modules_changes: &modules_changes
291   - .gitlab-ci.yml
292   - ci/gitlab/*.py
293   - meson.build
294   - subprojects/*.wrap
295   - subprojects/gst-devtools/**/*
296   - subprojects/gst-editing-services/**/*
297   - subprojects/gst-integration-testsuites/**/*
298   - subprojects/gst-libav/**/*
299   - subprojects/gst-omx/**/*
300   - subprojects/gst-plugins-bad/**/*
301   - subprojects/gst-plugins-base/**/*
302   - subprojects/gst-plugins-good/**/*
303   - subprojects/gst-plugins-ugly/**/*
304   - subprojects/gst-python/**/*
305   - subprojects/gstreamer/**/*
306   - subprojects/gstreamer-sharp/**/*
307   - subprojects/gstreamer-vaapi/**/*
308   - subprojects/gst-rtsp-server/**/*
309
310 .simple_fedora_build: &simple_build >-
311   ${DEFAULT_MESON_ARGS}
312   -Dsharp=enabled
313   -Domx=enabled
314   -Dgst-omx:target=generic
315   -Ddoc=disabled
316   -Drs=disabled
317   ${MESON_BUILDTYPE_ARGS}
318   ${MESON_GST_WERROR}
319
320 .build:
321   stage: 'build'
322   extends:
323     - '.build_ccache_vars'
324   needs:
325     - "trigger"
326   # Taking into account the slowest shared runner + time needed to upload the binaries to artifacts
327   # Also need to take into account I/O of pulling docker images and uploading artifacts
328   timeout: '45min'
329   variables:
330     MESON_ARGS: "${DEFAULT_MESON_ARGS} ${MESON_BUILDTYPE_ARGS} ${MESON_GST_WERROR}"
331   script:
332     *build
333   after_script:
334     - mv build/meson-logs/ meson-logs
335   artifacts:
336     expire_in: "7 days"
337     when: "always"
338     paths:
339       - 'meson-logs/'
340   rules:
341     # If this matches, it means the pipeline is running against either the main
342     # or a stable branch, so make it manual
343     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
344       when: manual
345     - changes:
346         *modules_changes
347
348 .build fedora x86_64:
349   extends:
350     - '.fedora image'
351     - '.fdo.suffixed-image@fedora'
352     - '.build'
353   needs:
354     - "fedora amd64 docker"
355   variables:
356     MESON_ARGS: *simple_build
357
358 build nodebug fedora x86_64:
359   extends:
360     - '.fedora image'
361     - '.fdo.suffixed-image@fedora'
362     - '.build'
363   needs:
364     - "fedora amd64 docker"
365   variables:
366     MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dsharp=enabled -Dgstreamer:gst_debug=false -Domx=enabled -Dgst-omx:target=generic ${MESON_BUILDTYPE_ARGS} ${MESON_GST_WERROR}"
367
368 build clang fedora x86_64:
369   extends: '.build fedora x86_64'
370   variables:
371     CC: 'ccache clang'
372     CXX: 'ccache clang++'
373
374 .build windows:
375   image: $WINDOWS_IMAGE
376   stage: 'build'
377   tags:
378     - 'docker'
379     - 'windows'
380     - '1809'
381   needs:
382     - "windows amd64 docker"
383   timeout: '45min'
384   variables:
385     MESON_ARGS: >
386       ${DEFAULT_MESON_ARGS}
387       -Dpython=disabled
388       -Dlibav=disabled
389       -Dvaapi=disabled
390       -Dgst-plugins-base:pango=enabled
391       -Dgst-plugins-good:cairo=enabled
392     # Needs to not be empty otherwise the newline -> space replace command in
393     # `script:` will fail
394     MESON_CROSS_ARGS: ' '
395   rules:
396     # If this matches, it means the pipeline is running against either the main
397     # or a stable branch, so make it manual
398     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
399       when: manual
400     - changes:
401         *modules_changes
402   script:
403     - ci/scripts/handle-subprojects-cache.py subprojects/
404     # For some reason, options are separated by newline instead of space, so we
405     # have to replace them first.
406     - $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
407     - $env:MESON_CROSS_ARGS = $env:MESON_CROSS_ARGS.replace("`n"," ")
408     - cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=$env:ARCH &&
409         meson build $env:MESON_ARGS $env:MESON_CROSS_ARGS &&
410         ninja -C build"
411   # XXX: Re-enable when uploading stops timing out
412   #artifacts:
413   #  expire_in: "7 days"
414   #  when: "always"
415   #  paths:
416   #    - 'build/meson-logs/'
417   #    - 'vslogs.zip'
418
419 build vs2019 amd64:
420   extends: '.build windows'
421   variables:
422     ARCH: 'amd64'
423
424 build vs2019 x86:
425   extends: '.build windows'
426   variables:
427     ARCH: 'x86'
428
429 build vs2019 arm64 uwp:
430   extends: '.build windows'
431   variables:
432     ARCH: 'arm64'
433     # pango pulls in cairo which pulls in pixman which doesn't build because of
434     # https://github.com/mesonbuild/meson/issues/9889
435     MESON_CROSS_ARGS: >
436       -Dgst-plugins-base:pango=disabled
437       -Dgst-plugins-good:cairo=disabled
438       -Dgst-devtools:cairo=disabled
439       --cross-file ci/meson/vs2019-arm64-cross-file.txt
440       --native-file ci/meson/vs2019-x64-native-file.txt
441
442 build msys2 :
443   extends: '.build windows'
444   timeout: '60min'
445   rules:
446     - changes:
447         *modules_changes
448       allow_failure: true
449       when: 'manual'
450   script:
451     # Make sure powershell exits on errors
452     # https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-6
453     - $ErrorActionPreference = "Stop"
454
455     # Configure MSYS2 to use the UCRT64 environment, start in the same directory
456     # and inherit PATH
457     - $env:MSYSTEM = "UCRT64"
458     - $env:CHERE_INVOKING = "1"
459     - $env:MSYS2_PATH_TYPE = "inherit"
460     # For some reason, options are separated by newline instead of space, so we
461     # have to replace them first.
462     - $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
463     # Replace forward slashes with backwards so bash doesn't complain
464     - $env:_PROJECT_DIR = $env:CI_PROJECT_DIR.replace('\','/')
465     - C:\msys64\usr\bin\bash -lc "meson build $env:MESON_ARGS && ninja -C build"
466
467 # ---- Tests ----- #
468
469 .test:
470   stage: 'test'
471   extends:
472     - '.build_ccache_vars'
473   needs:
474     - "trigger"
475   variables:
476     MESON_ARGS: *simple_build
477
478     # Disable colored output to avoid weird rendering issues
479     GST_DEBUG_NO_COLOR: "true"
480     CI_ARTIFACTS_URL: "${CI_PROJECT_URL}/-/jobs/${CI_JOB_ID}/artifacts/raw/validate-logs/"
481     GST_VALIDATE_LAUNCHER_FORCE_COLORS: "true"
482     TIMEOUT_FACTOR: "2"
483     CARGO_HOME: "/cache/gstreamer/cargo"
484     # Enable the fault handler so we get backtraces on segfaults.
485     # any non-empty string will do
486     PYTHONFAULTHANDLER: "enabled"
487   rules:
488     - changes:
489         *modules_changes
490   script:
491     - *build
492
493     - echo "-> Running ${TEST_SUITE}"
494     - >
495       ./gst-env.py
496       gst-validate-launcher ${TEST_SUITE}
497       --check-bugs
498       --dump-on-failure
499       --mute
500       --shuffle
501       --no-display
502       --meson-no-rebuild
503       --timeout-factor "${TIMEOUT_FACTOR}"
504       --fail-on-testlist-change
505       -l "${CI_PROJECT_DIR}/validate-logs/"
506       --xunit-file "${CI_PROJECT_DIR}/validate-logs/xunit.xml"
507       ${EXTRA_VALIDATE_ARGS}
508   after_script:
509     - mv build/meson-logs/ meson-logs
510   artifacts:
511     expire_in: '14 days'
512     when: always
513     paths:
514       - 'meson-logs/'
515       - 'validate-logs'
516     reports:
517       junit:
518         - "validate-logs/*.xml"
519
520 .test fedora x86_64:
521   extends:
522     - '.fedora image'
523     - '.fdo.suffixed-image@fedora'
524     - '.test'
525   needs:
526     - "fedora amd64 docker"
527   tags: ['gstreamer']
528
529 check fedora:
530   extends: '.test fedora x86_64'
531   variables:
532     TEST_SUITE: "check.gst*"
533
534 integration testsuites fedora:
535   extends: '.test fedora x86_64'
536   parallel: 4
537   variables:
538     EXTRA_VALIDATE_ARGS: "--timeout-factor=2 --retry-on-failures --parts=${CI_NODE_TOTAL} --part-index=${CI_NODE_INDEX} --sync"
539     TEST_SUITE: "validate ges"
540
541 # gstreamer-full:
542 gstreamer-full static build:
543   extends: '.build fedora x86_64'
544   stage: 'build'
545   variables:
546     MESON_ARGS: >
547       --default-library=static
548       -Ddoc=disabled
549       $MESON_GST_WERROR
550
551   script:
552   - *build
553   - meson test -C build -v test-gst-full
554   artifacts:
555     expire_in: "7 days"
556     when: "always"
557     paths:
558       - 'meson-logs/'
559
560 gstreamer-full-minimal static build:
561   extends: 'gstreamer-full static build'
562   stage: 'build'
563   variables:
564     MESON_ARGS: >
565       --default-library=static
566       -Ddoc=disabled
567       -Dgstreamer:gst_debug=false
568       -Dauto_features=disabled
569       -Dgstreamer:check=enabled
570       -Dtests=enabled
571       -Dgst-plugins-base:alsa=enabled
572       -Dgst-plugins-base:typefind=enabled
573       -Dgst-plugins-base:pbtypes=enabled
574       -Dgst-full-elements=coreelements:filesrc,fakesink,identity,input-selector
575       -Dgst-full-typefind-functions=typefindfunctions:wav,flv
576       -Dgst-full-device-providers=alsa:alsadeviceprovider
577       -Dgst-full-dynamic-types=pbtypes:video_multiview_flagset
578       $MESON_GST_WERROR
579
580   script:
581   - *build
582   - meson test -C build -v test-gst-full
583   - meson test -C build test-gst-full-features --test-args "-e filesrc,identity,fakesink -E filesink,capsfilter -t audio/x-wav -T video/vivo -d alsadeviceprovider -D v4l2deviceprovider -l GstVideoMultiviewFlagsSet"
584   - strip build/libgstreamer-full-1.0.so
585   - ls -l build/libgstreamer-full-1.0.so
586   artifacts:
587     expire_in: "7 days"
588     when: "always"
589     paths:
590       - 'meson-logs/'
591
592 # Valgrind
593 .valgrind fedora x86_64:
594   extends: '.test fedora x86_64'
595   stage: 'test'
596   variables:
597     EXTRA_VALIDATE_ARGS: "--valgrind"
598
599 valgrind core:
600   extends: '.valgrind fedora x86_64'
601   variables:
602     TEST_SUITE: "check.gstreamer\\..*"
603   rules:
604     - changes:
605       - "*"
606       - scripts/*
607       - ci/**/*
608       - subprojects/gst-devtools/**/*
609       - subprojects/gstreamer/**/*
610
611 valgrind base:
612   extends: '.valgrind fedora x86_64'
613   variables:
614     TEST_SUITE: "check.gst-plugins-base\\..*"
615   rules:
616     - changes:
617       - "*"
618       - scripts/*
619       - ci//**/*
620       - subprojects/gst-devtools/**/*
621       - subprojects/gstreamer/**/*
622       - subprojects/gst-plugins-base/**/*
623
624 valgrind good:
625   extends: '.valgrind fedora x86_64'
626   variables:
627     TEST_SUITE: "check.gst-plugins-good\\..*"
628     # take longer time due to splitmux unit test
629     TIMEOUT_FACTOR: "4"
630   rules:
631     - changes:
632       - "*"
633       - scripts/*
634       - ci/**/*
635       - subprojects/gst-devtools/**/*
636       - subprojects/gstreamer/**/*
637       - subprojects/gst-plugins-base/**/*
638       - subprojects/gst-plugins-good/**/*
639
640 valgrind ugly:
641   extends: '.valgrind fedora x86_64'
642   variables:
643     TEST_SUITE: "check.gst-plugins-ugly\\..*"
644   rules:
645     - changes:
646       - "*"
647       - scripts/*
648       - ci/**/*
649       - subprojects/gst-devtools/**/*
650       - subprojects/gstreamer/**/*
651       - subprojects/gst-plugins-base/**/*
652       - subprojects/gst-plugins-good/**/*
653       - subprojects/gst-plugins-ugly/**/*
654
655 valgrind bad:
656   extends: '.valgrind fedora x86_64'
657   variables:
658     TEST_SUITE: "check.gst-plugins-bad\\..*"
659   rules:
660     - changes:
661       - "*"
662       - scripts/*
663       - ci/**/*
664       - subprojects/gst-devtools/**/*
665       - subprojects/gstreamer/**/*
666       - subprojects/gst-plugins-base/**/*
667       - subprojects/gst-plugins-good/**/*
668       - subprojects/gst-plugins-bad/**/*
669
670 valgrind ges:
671   extends: '.valgrind fedora x86_64'
672   variables:
673     TEST_SUITE: "check.gst-editing-services\\..*"
674   rules:
675     - changes:
676       - "*"
677       - scripts/*
678       - ci/**/*
679       - subprojects/gst-devtools/**/*
680       - subprojects/gstreamer/**/*
681       - subprojects/gst-plugins-base/**/*
682       - subprojects/gst-plugins-good/**/*
683       - subprojects/gst-plugins-bad/**/*
684       - subprojects/gst-editing-services/**/*
685
686 # ---- Integration ----- #
687
688 .documentation:
689   image: $FEDORA_DOCS_IMAGE
690   extends:
691     - '.build_ccache_vars'
692   variables:
693     MESON_ARGS: *simple_build
694     MESON_BUILDTYPE_ARGS: "-Ddoc=enabled"
695     CI_ARTIFACTS_URL: "${CI_PROJECT_URL}/-/jobs/${CI_JOB_ID}/artifacts/raw/"
696   script:
697   # FIXME: should rebuild the image with newer versions!
698   - pip3 install --upgrade hotdoc
699   - pip3 install --upgrade meson
700   - *build
701   - ./gst-env.py ninja -C build/ plugins_doc_caches
702   # Ignore modifications to wrap files made by meson
703   - git checkout subprojects/*.wrap
704   - ./ci/scripts/check-documentation-diff.py
705   - ./gst-env.py hotdoc run --conf-file=build/subprojects/gst-docs/GStreamer-doc.json --fatal-warnings
706   - mv build/subprojects/gst-docs/GStreamer-doc/html documentation/
707
708   artifacts:
709     when: always
710     expire_in: "7 days"
711     paths:
712     - documentation/
713     - plugins-cache-diffs/
714
715 #
716 # This jobs runs in gstreamer namespace when after the merge into main branch.
717 # The produced artifact is later used to automatically update the web page.
718 #
719 documentation:
720   stage: integrate
721   extends:
722     - '.documentation'
723   needs: []
724   rules:
725     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == "main"'
726
727 #
728 # This job is run in users namespace to validate documentation before merging
729 # MR.
730 #
731 build documentation:
732   extends:
733     - '.documentation'
734   stage: build
735   needs:
736     - "trigger"
737   rules:
738     # Never run post merge, we have the `documentation` always running for that
739     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
740       when: never
741     - changes:
742       - .gitlab-ci.yml
743       - ci/gitlab/*.py
744       - subprojects/*.wrap
745       - subprojects/gst-docs/**/*
746       - subprojects/gst-devtools/**/*
747       - subprojects/gst-editing-services/**/*
748       - subprojects/gst-libav/**/*
749       - subprojects/gst-omx/**/*
750       - subprojects/gst-plugins-bad/**/*
751       - subprojects/gst-plugins-base/**/*
752       - subprojects/gst-plugins-good/**/*
753       - subprojects/gst-plugins-ugly/**/*
754       - subprojects/gstreamer/**/*
755       - subprojects/gstreamer-vaapi/**/*
756       - subprojects/gst-rtsp-server/**/*
757
758 # FIXME: Using trigger: causes permission issues, workaround using old REST API.
759 # https://gitlab.com/gitlab-org/gitlab/-/issues/341737
760 cerbero trigger:
761   stage: build
762   timeout: '3h'
763   extends:
764     - '.fedora image'
765     - '.fdo.suffixed-image@fedora'
766   needs:
767     - "fedora amd64 docker"
768   script:
769     - ci/gitlab/trigger_cerbero_pipeline.py
770
771   rules:
772     # Never run post merge
773     - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
774       when: never
775     - changes:
776       - .gitlab-ci.yml
777       - ci/gitlab/*.py
778       - subprojects/gst-devtools/**/*
779       - subprojects/gst-editing-services/**/*
780       - subprojects/gst-libav/**/*
781       - subprojects/gst-plugins-bad/**/*
782       - subprojects/gst-plugins-base/**/*
783       - subprojects/gst-plugins-good/**/*
784       - subprojects/gst-plugins-ugly/**/*
785       - subprojects/gst-python/**/*
786       - subprojects/gstreamer/**/*
787       - subprojects/gst-rtsp-server/**/*
788       - subprojects/gst-examples/**/*