Skip to content
Snippets Groups Projects
Commit a037b97b authored by Grigoris Pavlakis's avatar Grigoris Pavlakis Committed by kongr45gpen
Browse files

Change to testing repos from sid in order to attempt fixing dependency errors

Update .gitlab-ci.yml
parent b5fcd19b
No related branches found
No related tags found
No related merge requests found
...@@ -38,8 +38,8 @@ tests: ...@@ -38,8 +38,8 @@ tests:
cppcheck: cppcheck:
stage: build stage: build
before_script: before_script:
- echo deb http://deb.debian.org/debian sid main > /etc/apt/sources.list - echo deb http://deb.debian.org/debian testing main > /etc/apt/sources.list
- apt-get update -qq && apt-get -t sid install -y -qq cppcheck - apt-get update -qq && apt-get -t testing install -y cppcheck
- cppcheck --version - cppcheck --version
script: script:
- ci/cppcheck.sh - ci/cppcheck.sh
...@@ -47,9 +47,9 @@ cppcheck: ...@@ -47,9 +47,9 @@ cppcheck:
cppcheck-misra: cppcheck-misra:
stage: build stage: build
before_script: before_script:
# install cppcheck from the sid repos in order to get the latest version # install cppcheck from the testing repos in order to get the latest version
- echo deb http://deb.debian.org/debian sid main > /etc/apt/sources.list - echo deb http://deb.debian.org/debian testing 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 - apt-get update -qq && apt-get -t testing install -y cppcheck && apt-get -t testing install -y python3
- cppcheck --version - cppcheck --version
script: script:
- ci/cppcheck-misra.sh - ci/cppcheck-misra.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment