formatting: dependencies: [] stage: check image: name: ubuntu:23.10 tags: - gitlab-org-docker script: - apt update -y # For Ubuntu 22.04 and newer we need to create an virutal env - apt install python3.11 python3.11-venv clang clang-format -y # Run this command in the ScreenPlay source root folder: - python3 -m venv env - source env/bin/activate - python3 -m pip install -U pip wheel - python3 -m pip install -U cmakelang - cd Tools - python3 check_format_cmake.py --check - python3 check_format_cpp.py --check #- python check_format_qml.py --check