do not skip test on the build binary (#856)
This commit is contained in:
+2
-2
@@ -731,7 +731,7 @@ def buildOpencloudBinaryForTesting(ctx):
|
|||||||
{
|
{
|
||||||
"event": "pull_request",
|
"event": "pull_request",
|
||||||
"path": {
|
"path": {
|
||||||
"exclude": skipIfUnchanged(ctx, "unit-tests"),
|
"exclude": skipIfUnchanged(ctx, "base"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@@ -2107,7 +2107,7 @@ def skipIfUnchanged(ctx, type):
|
|||||||
skip = base + acceptance
|
skip = base + acceptance
|
||||||
elif type == "build-binary" or type == "build-docker" or type == "litmus":
|
elif type == "build-binary" or type == "build-docker" or type == "litmus":
|
||||||
skip = base + unit + acceptance
|
skip = base + unit + acceptance
|
||||||
elif type == "cache":
|
elif type == "cache" or type == "base":
|
||||||
skip = base
|
skip = base
|
||||||
|
|
||||||
return skip
|
return skip
|
||||||
|
|||||||
Reference in New Issue
Block a user