summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@collabora.co.uk>2018-09-24 16:57:13 +0200
committerZeeshan Ali <zeenix@collabora.co.uk>2018-10-13 18:45:11 +0200
commit035413afb48fa56c48fc7da22e7807f487caa16d (patch)
tree86bbbf4a9e64ca91583c6f60e3369b1c6e9f636e
parent9bca497160cc22f204a38b3e1199be6b210080ec (diff)
CI: no need to checkout geoclue
CI already does this for us. Before this change, we were always building the master branch and that meant merge requests weren't getting tested.
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3dab068..915ed78 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,12 +11,12 @@ before_script:
ubuntu-16.04:
image: ubuntu:xenial
- script: git clone --depth 50 --recurse-submodules https://gitlab.freedesktop.org/geoclue/geoclue && cd geoclue && ./autogen.sh --disable-nmea-source && make -j && make -j check && make install
+ script: ./autogen.sh --disable-nmea-source && make -j && make -j check && make install
ubuntu-17.10:
image: ubuntu:artful
- script: git clone --depth 50 --recurse-submodules https://gitlab.freedesktop.org/geoclue/geoclue && cd geoclue && ./autogen.sh --disable-nmea-source && make -j && make -j check && make install
+ script: ./autogen.sh --disable-nmea-source && make -j && make -j check && make install
ubuntu-18.04:
image: ubuntu:bionic
- script: git clone --depth 50 --recurse-submodules https://gitlab.freedesktop.org/geoclue/geoclue && cd geoclue && ./autogen.sh --disable-nmea-source && make -j && make -j check && make install
+ script: ./autogen.sh --disable-nmea-source && make -j && make -j check && make install