summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2021-04-21 10:18:55 +0200
committerOndrej Holy <oholy@redhat.com>2021-04-21 10:47:58 +0200
commitb3d68fbbf8f679dc2a8357881c0c692ee9a9c425 (patch)
treea1700b5a7200e0c46892b2703e78c605202fcd9f
parent3c5c9d42acadaf5e4c1432be4dcb60d96d2eecaa (diff)
downloadnautilus-b3d68fbbf8f679dc2a8357881c0c692ee9a9c425.tar.gz
ci: Specify test dependencies to fix pipeline
The `validate-desktop`, `validate-desktop-autorun-software` and `validate-appdata` meson tests fail currently because of the updated meson. This is because of the recent change, which requires explicit specification of dependencies. Let's specify them to fix the pipeline. https://gitlab.gnome.org/GNOME/gnome-build-meta/-/issues/372
-rw-r--r--data/meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/data/meson.build b/data/meson.build
index 9a4e2ff52..cc1561d89 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -117,6 +117,9 @@ if desktop_file_validate.found()
desktop_file_validate,
args: [
desktop.full_path()
+ ],
+ depends: [
+ desktop,
]
)
test(
@@ -124,6 +127,9 @@ if desktop_file_validate.found()
desktop_file_validate,
args: [
desktop_autorun_software.full_path()
+ ],
+ depends: [
+ desktop_autorun_software,
]
)
endif
@@ -134,6 +140,9 @@ if appstream_util.found()
'validate-appdata', appstream_util,
args: [
'validate-relax', '--nonet', appdata.full_path()
+ ],
+ depends: [
+ appdata,
]
)
endif