From c47104b653ea4980868ef59351a24e931a5d11bf Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Sun, 1 Jul 2018 17:07:21 +0200
Subject: [PATCH] Faster review apps

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fa41fbd25f..3ce5e624de 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,8 +19,8 @@ review_front:
   when: manual
   allow_failure: true
   before_script:
-    - apt-get update
-    - apt-get install jq -y
+    - curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
+    - chmod +x /usr/local/bin/jq
     - cd front
   script:
     - yarn install
@@ -178,8 +178,8 @@ build_front:
   stage: build
   image: node:9
   before_script:
-    - apt-get update
-    - apt-get install jq -y
+    - curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
+    - chmod +x /usr/local/bin/jq
     - cd front
   script:
     - yarn install
-- 
GitLab