summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano1618@gmail.com>2018-03-16 23:57:57 +0000
committerCarlos Soriano <csoriano1618@gmail.com>2018-03-16 23:57:57 +0000
commitf7bd4db8057a1797f5863e1ee92221a430e3cacb (patch)
tree4ff817b6babb0f74bc9dfe6715dd27349d89fbb6
parentbb50329ff867bca3c7dd7a4d91b55157987af89b (diff)
downloadnautilus-f7bd4db8057a1797f5863e1ee92221a430e3cacb.tar.gz
CI: Seems builddep is not installed in the Fedora image? :/
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 52f542e21..08785bb01 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,7 @@ build:fedora:
image: fedora:28
stage: Build
script:
+ - dnf install -y 'dnf-command(builddep)'
- dnf builddep nautilus
- meson _build .
- ninja -C _build
@@ -15,8 +16,8 @@ test:fedora:
image: fedora:28
stage: Test
script:
+ - dnf install -y gcovr 'dnf-command(builddep)'
- dnf builddep nautilus
- - dnf install gcovr
# Coverage data contains paths relative to the build directory,
# so changing to it makes writing filter expressions easier.
#
@@ -60,6 +61,7 @@ build:rawhide:
image: fedora:rawhide
stage: WeeklyTest
script:
+ - dnf install -y 'dnf-command(builddep)'
- dnf builddep nautilus
- meson _build .
- cd _build