- Remove old "trailing-whitespace" job that is no longer used. - Remove unnecessary .base-coding-style job from coding-style stage.
15 lines
363 B
YAML
15 lines
363 B
YAML
# ns-3 CI/CD script with the coding-style stage
|
|
#
|
|
# Contains jobs to check the coding style of the codebase.
|
|
|
|
check-style-clang-format:
|
|
stage: coding-style
|
|
image: ubuntu:latest
|
|
before_script:
|
|
- apt update
|
|
- DEBIAN_FRONTEND=noninteractive apt install -y
|
|
python3
|
|
clang-format-14
|
|
script:
|
|
- python3 utils/check-style-clang-format.py .
|