do not skip test on the build binary (#856)

This commit is contained in:
Viktor Scharf
2025-05-14 17:41:25 +02:00
committed by GitHub
parent 0754479219
commit daf45c10e5
+2 -2
View File
@@ -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