mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
ci: Check valgrind for all modules on gst-devtools
Now that we have [`gst-tester`] all module are starting to be tested with `gst-validate` (core and -base already have validate based unit tests) so we need to ensure that changes there do not break those modules. [gst-tester]: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/461 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/294>
This commit is contained in:
parent
92b78216d4
commit
929a611889
1 changed files with 5 additions and 5 deletions
|
@ -317,14 +317,14 @@ valgrind core:
|
|||
variables:
|
||||
TEST_SUITE: "check.gstreamer\\..*"
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-ci)$/'
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-ci|gst-devtools)$/'
|
||||
|
||||
valgrind base:
|
||||
extends: '.valgrind fedora x86_64'
|
||||
variables:
|
||||
TEST_SUITE: "check.gst-plugins-base\\..*"
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-ci)$/'
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-ci|gst-devtools)$/'
|
||||
|
||||
valgrind good:
|
||||
extends: '.valgrind fedora x86_64'
|
||||
|
@ -333,21 +333,21 @@ valgrind good:
|
|||
# take longer time due to splitmux unit test
|
||||
TIMEOUT_FACTOR: "4"
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-good|gst-ci)$/'
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-good|gst-ci|gst-devtools)$/'
|
||||
|
||||
valgrind ugly:
|
||||
extends: '.valgrind fedora x86_64'
|
||||
variables:
|
||||
TEST_SUITE: "check.gst-plugins-ugly\\..*"
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-ugly|gst-ci)$/'
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-ugly|gst-ci|gst-devtools)$/'
|
||||
|
||||
valgrind bad:
|
||||
extends: '.valgrind fedora x86_64'
|
||||
variables:
|
||||
TEST_SUITE: "check.gst-plugins-bad\\..*"
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-good|gst-plugins-bad|gst-ci)$/'
|
||||
- if: '$CI_PROJECT_NAME =~ /^(gstreamer|gst-plugins-base|gst-plugins-good|gst-plugins-bad|gst-ci|gst-devtools)$/'
|
||||
|
||||
valgrind ges:
|
||||
extends: '.valgrind fedora x86_64'
|
||||
|
|
Loading…
Reference in a new issue