From 18b8c4025b5d94720c5e3a59e42a62415032398c Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 17 Aug 2023 10:48:28 +0200 Subject: [PATCH] Change ci formatter script to allow system wide installation this is fine for a temporary ci --- .gitlab/ci/check_jobs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/check_jobs.yml b/.gitlab/ci/check_jobs.yml index 35e296ab..561c60c3 100644 --- a/.gitlab/ci/check_jobs.yml +++ b/.gitlab/ci/check_jobs.yml @@ -9,8 +9,8 @@ formatting: - apt-get update -y - apt-get install python3-pip python-is-python3 clang clang-format -y script: - - python -m pip install -U pip wheel - - python -m pip install -U cmakelang + - python -m pip install -U pip wheel --break-system-packages + - python -m pip install -U cmakelang --break-system-packages - cd Tools - python clang_format.py - python cmake_format.py