From 4012cb61bfd6261fb7a5097813fc272bd4d55e7a Mon Sep 17 00:00:00 2001
From: schneider <schneider@blinkenlichts.net>
Date: Tue, 11 Jun 2019 03:09:52 +0200
Subject: [PATCH] fix(ci): Use meson from backports

---
 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 34957100c..3674ef986 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,10 @@ image: "debian"
 build:
     stage: build
     before_script:
-        - apt update -qq && apt install -y -qq gcc-arm-none-eabi python3-pip meson
+        - echo "deb http://deb.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
+        - apt update -qq
+        - apt install -y -qq gcc-arm-none-eabi python3-pip
+        - apt install -y -qq -t stretch-backports install meson
         - pip3 install crc16
     script:
         - cd bootloader
-- 
GitLab