From a037b97bfb1d23f92c1fdae156b12100e941deab Mon Sep 17 00:00:00 2001 From: Grigoris Pavlakis <gregory.pavlakis@gmail.com> Date: Tue, 2 Apr 2019 05:08:44 +0000 Subject: [PATCH] Change to testing repos from sid in order to attempt fixing dependency errors Update .gitlab-ci.yml --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fa7b17be..91b67e1a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,8 +38,8 @@ tests: cppcheck: stage: build before_script: - - echo deb http://deb.debian.org/debian sid main > /etc/apt/sources.list - - apt-get update -qq && apt-get -t sid install -y -qq cppcheck + - echo deb http://deb.debian.org/debian testing main > /etc/apt/sources.list + - apt-get update -qq && apt-get -t testing install -y cppcheck - cppcheck --version script: - ci/cppcheck.sh @@ -47,9 +47,9 @@ cppcheck: cppcheck-misra: stage: build before_script: - # install cppcheck from the sid repos in order to get the latest version - - echo deb http://deb.debian.org/debian sid main > /etc/apt/sources.list - - apt-get update -qq && apt-get -t sid install -y -qq cppcheck && apt-get -t sid install -y python3.6 + # install cppcheck from the testing repos in order to get the latest version + - echo deb http://deb.debian.org/debian testing main > /etc/apt/sources.list + - apt-get update -qq && apt-get -t testing install -y cppcheck && apt-get -t testing install -y python3 - cppcheck --version script: - ci/cppcheck-misra.sh -- GitLab