diff options
author | Ondrej Holy <oholy@redhat.com> | 2020-09-04 16:11:35 +0200 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2020-09-04 17:48:32 +0200 |
commit | b146c4fe4a9fa2f01d95a7e2e3e167a2e66394ac (patch) | |
tree | ac63f720a92496a1d1add3e81f01b22dad365982 /.gitlab | |
parent | af848924eb4c1dd8ed5631459240faa03bfce291 (diff) | |
download | nautilus-b146c4fe4a9fa2f01d95a7e2e3e167a2e66394ac.tar.gz |
ci: Add Tracker 3 dependencies
The fedora rawhide job fails currently as the image doesn't contain
Tracker 3 packages. Let's temporarily install the packages from
ssssam/tracker3 copr repository as they are not available yet in
rawhide repositories.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/Dockerfile b/.gitlab/Dockerfile index e0e2df663..6fe4d7b47 100644 --- a/.gitlab/Dockerfile +++ b/.gitlab/Dockerfile @@ -3,3 +3,7 @@ FROM fedora:rawhide RUN dnf install --nogpg -y dnf-plugins-core uncrustify findutils \ && dnf builddep --nogpg -y nautilus \ && dnf clean all + +RUN dnf copr enable -y ssssam/tracker3 \ + && dnf install --nogpg -y tracker3 tracker3-miners tracker3-devel python3-tracker3-testutils python3-gobject dbus-daemon \ + && dnf clean all |