[#1689] ci: Move commit checker out of Jenkinsfile
All checks were successful
Vulncheck / Vulncheck (push) Successful in 1m11s
Pre-commit hooks / Pre-commit (push) Successful in 1m38s
Build / Build Components (push) Successful in 1m56s
Tests and linters / gopls check (push) Successful in 3m49s
Tests and linters / Run gofumpt (push) Successful in 4m11s
Tests and linters / Tests (push) Successful in 4m20s
OCI image / Build container images (push) Successful in 4m27s
Tests and linters / Staticcheck (push) Successful in 4m48s
Tests and linters / Lint (push) Successful in 4m56s
Tests and linters / Tests with -race (push) Successful in 5m28s

Commit checker is now configured globally for all Gerrit repositories:
  TrueCloudLab/jenkins#16

This allows us to execute commit-checker independently from the rest of
CI suite and re-check commit message format without rerunning other
tests.

Change-Id: Ib8f899b856482a5dc5d03861171585415ff6b452
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
Vitaliy Potyarkin 2025-04-11 14:44:19 +03:00
parent 12fc7850dd
commit 8e87cbee17

6
.ci/Jenkinsfile vendored
View file

@ -78,10 +78,4 @@ async {
}
}
}
task('dco') {
container('git.frostfs.info/truecloudlab/commit-check:master') {
sh 'FROM=pull_request_target commit-check'
}
}
}