Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
d45a6d81
Commit
d45a6d81
authored
1 month ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
ci: generate the style patch artifact
parent
a9a6ba05
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!82
CI: generate style artifact
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+26
-2
26 additions, 2 deletions
.gitlab-ci.yml
CONTRIBUTING.md
+1
-1
1 addition, 1 deletion
CONTRIBUTING.md
with
27 additions
and
3 deletions
.gitlab-ci.yml
+
26
−
2
View file @
d45a6d81
...
...
@@ -68,9 +68,33 @@ Check licenses:
interruptible
:
true
Check style
:
extends
:
.common_pre_commit
extends
:
-
.colorized
-
.common_pre_commit
variables
:
STYLE_PATCH
:
style.patch
script
:
-
pre-commit run --show-diff-on-failure --color=always --all-files
-
|
# pre-commit run --all-files
pre-commit run --color=always --all-files || {
printf "${RED}The source code does not meet the style requirements:\n
${CI_PROJECT_URL}/-/blob/${CI_DEFAULT_BRANCH}/CONTRIBUTING.md#coding-style.\n${DEFAULT}"
git diff --ignore-submodules --patch-with-raw > "${STYLE_PATCH}"
test -s "${STYLE_PATCH}" && {
printf "${RED}At least some of the issues can be resolved with the patch (see artifacts):\n
${CI_JOB_URL}/artifacts/raw/${STYLE_PATCH}.\n${DEFAULT}"
} || {
printf "${RED}The issues cannot be resolved with a patch.\n${DEFAULT}"
rm -rf "${STYLE_PATCH}"
}
exit 1
}
artifacts
:
paths
:
-
${STYLE_PATCH}
expose_as
:
'
Style
Patch'
when
:
on_failure
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "web"
when
:
manual
...
...
This diff is collapsed.
Click to expand it.
CONTRIBUTING.md
+
1
−
1
View file @
d45a6d81
#
Formatting and linting
#
Coding style
We use
[
`pre-commit`
](
https://pre-commit.com
)
hooks to maintain a set of
formatting and linting rules. Although there is a CI job that runs for each
merge request and checks whether the contribution does not break the rules, we
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment