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