[#1689] ci: Add commit checker to Jenkinsfile
All checks were successful
Vulncheck / Vulncheck (push) Successful in 1m6s
Pre-commit hooks / Pre-commit (push) Successful in 1m33s
Build / Build Components (push) Successful in 1m53s
Tests and linters / Tests with -race (push) Successful in 2m23s
Tests and linters / Run gofumpt (push) Successful in 2m37s
Tests and linters / Lint (push) Successful in 2m49s
Tests and linters / Staticcheck (push) Successful in 3m1s
Tests and linters / Tests (push) Successful in 3m10s
Tests and linters / gopls check (push) Successful in 3m34s
OCI image / Build container images (push) Successful in 5m33s

- Commit checker image is built from dco-go:
  TrueCloudLab/dco-go#14
- 'pull_request_target' branch is defined in Jenkins job:
  TrueCloudLab/jenkins#10
  TrueCloudLab/jenkins#11

Change-Id: Ib86c5749f9e084d736b868240c4b47014b02ba8d
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
Vitaliy Potyarkin 2025-03-25 17:15:21 +03:00
parent 30d4692c3e
commit 12a0537a7a

8
.ci/Jenkinsfile vendored
View file

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