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:
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
......
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