mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
f5ab76186a
Remove dependencies from check_jobs Remove qml format until qmlformat is installed
19 lines
530 B
YAML
19 lines
530 B
YAML
formatting:
|
|
dependencies: []
|
|
stage: check
|
|
allow_failure: true
|
|
image:
|
|
name: ubuntu:23.10
|
|
tags:
|
|
- gitlab-org-docker
|
|
before_script:
|
|
- apt-get update -y
|
|
- apt-get install python3-pip python-is-python3 clang clang-format -y
|
|
script:
|
|
- python -m pip install -U pip wheel --break-system-packages
|
|
- python -m pip install -U cmakelang --break-system-packages
|
|
- cd Tools
|
|
- python check_format_cmake.py --check
|
|
- python check_format_cpp.py --check
|
|
#- python check_format_qml.py --check
|