update ci

This commit is contained in:
Willy Kloucek
2022-03-31 19:40:53 +02:00
parent b646aace45
commit 5a6c5fc15c

View File

@@ -393,14 +393,24 @@ def goLicenseCheck(ctx):
makeNodeGenerate("") +
makeGoGenerate("") +
build() +
[{
"name": "check-go-license",
"image": OC_CI_GOLANG,
"commands": [
"make check-go-licenses",
],
"volumes": [stepVolumeGo],
}],
[
{
"name": "check-go-license",
"image": OC_CI_GOLANG,
"commands": [
"make check-go-licenses",
],
"volumes": [stepVolumeGo],
},
{
"name": "save-go-licenses",
"image": OC_CI_GOLANG,
"commands": [
"make save-go-licenses",
],
"volumes": [stepVolumeGo],
},
],
"trigger": {
"ref": [
"refs/heads/master",