Skip to content

Commit 24afa7a

Browse files
only asan and ubsan
1 parent 65cb970 commit 24afa7a

File tree

1 file changed

+9
-63
lines changed

1 file changed

+9
-63
lines changed

.drone.jsonnet

Lines changed: 9 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -663,69 +663,15 @@ local Pipeline(branch, platform, event, arch="amd64", server="10.6-enterprise",
663663

664664

665665
local AllPipelines =
666-
[
667-
Pipeline(b, platform, triggeringEvent, a, server, flag, "")
668-
for a in ["amd64"]
669-
for b in std.objectFields(platforms)
670-
for platform in ["rockylinux:8"]
671-
for flag in ["gcc-toolset"]
672-
for triggeringEvent in events
673-
for server in servers[current_branch]
674-
] +
675-
[
676-
Pipeline(b, p, e, a, s)
677-
for b in std.objectFields(platforms)
678-
for p in platforms[b]
679-
for s in servers[b]
680-
for e in events
681-
for a in archs
682-
] +
683-
[
684-
Pipeline(any_branch, p, "custom", a, server)
685-
for p in platforms[current_branch]
686-
for server in servers[current_branch]
687-
for a in archs
688-
] +
689-
// clang
690-
[
691-
Pipeline(b, platform, triggeringEvent, a, server, "", buildenv)
692-
for a in ["amd64"]
693-
for b in std.objectFields(platforms)
694-
for platform in ["ubuntu:24.04"]
695-
for buildenv in std.objectFields(customEnvCommandsMap)
696-
for triggeringEvent in events
697-
for server in servers[current_branch]
698-
] +
699-
// last argument is to ignore mtr and regression failures
700-
[
701-
Pipeline(b, platform, triggeringEvent, a, server, "", "", ["regression"])
702-
for a in ["amd64"]
703-
for b in std.objectFields(platforms)
704-
for server in extra_servers[current_branch]
705-
for platform in extra_servers_platforms[current_branch]
706-
for triggeringEvent in events
707-
] +
708-
// // last argument is to ignore mtr and regression failures
709-
[
710-
Pipeline(b, platform, triggeringEvent, a, server, flag, envcommand, ["regression", "mtr"])
711-
for a in ["amd64"]
712-
for b in std.objectFields(platforms)
713-
for platform in ["ubuntu:24.04"]
714-
for flag in ["libcpp"]
715-
for envcommand in ["clang-20"]
716-
for triggeringEvent in events
717-
for server in servers[current_branch]
718-
] +
719-
// last argument is to ignore mtr and regression failures
720-
// [
721-
// Pipeline(b, platform, triggeringEvent, a, server, flag, "", ["regression", "mtr"])
722-
// for a in ["amd64"]
723-
// for b in std.objectFields(platforms)
724-
// for platform in ["ubuntu:24.04"]
725-
// for flag in ["ASan", "UBSan"]
726-
// for triggeringEvent in events
727-
// for server in servers[current_branch]
728-
// ] +
666+
[
667+
Pipeline(b, platform, triggeringEvent, a, server, flag, "", ["regression", "mtr"])
668+
for a in ["amd64"]
669+
for b in std.objectFields(platforms)
670+
for platform in ["ubuntu:24.04"]
671+
for flag in ["ASan", "UBSan"]
672+
for triggeringEvent in events
673+
for server in servers[current_branch]
674+
] +
729675

730676
[];
731677

0 commit comments

Comments
 (0)