From 3b1d8fbab87851043d1f1bc8070f4f4422e0917a Mon Sep 17 00:00:00 2001 From: Luke Anderson Date: Mon, 6 May 2019 19:17:03 +1000 Subject: [PATCH] Added a line to the GitLab config which installs protobuf before compiling lighthouse. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc6cdace1..a5d845165 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,6 +14,7 @@ variables: before_script: - apt-get update -yq - apt-get install -o dir::cache::archives="$APT_CACHE_DIR" -y clang libclang-dev cmake build-essential git unzip autoconf libtool + - git clone https://github.com/google/protobuf.git && cd protobuf && ./autogen.sh && ./configure && make && make install && ldconfig && make clean && cd .. && rm -r protobuf test: stage: test