ci: Rename "coding-style" stage to "code-linting"

This commit is contained in:
Eduardo Almeida
2022-09-29 16:47:03 +01:00
parent d0fe6b613c
commit 2ce78604b9
2 changed files with 6 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
# ns-3 CI/CD script with the coding-style stage
# ns-3 CI/CD script with the code-linting stage
#
# Contains jobs to check the coding style of the codebase.
# Contains jobs to check the ns-3 coding style and perform lint checking.
check-style-clang-format:
stage: coding-style
stage: code-linting
image: ubuntu:latest
before_script:
- apt update
@@ -14,7 +14,7 @@ check-style-clang-format:
- python3 utils/check-style-clang-format.py .
clang-tidy:
stage: coding-style
stage: code-linting
image: ubuntu:latest
before_script:
- apt update

View File

@@ -20,7 +20,7 @@
stages:
- build
- test
- coding-style
- code-linting
- documentation
###################### BUILD STAGE #############################################
@@ -104,6 +104,6 @@ include:
- "utils/tests/gitlab-ci-gcc.yml"
- "utils/tests/gitlab-ci-clang.yml"
- "utils/tests/gitlab-ci-test.yml"
- "utils/tests/gitlab-ci-coding-style.yml"
- "utils/tests/gitlab-ci-code-linting.yml"
- "utils/tests/gitlab-ci-doc.yml"
- "utils/tests/gitlab-ci-cppyy.yml"