@@ -6,8 +6,14 @@ local servers = {
6
6
};
7
7
8
8
local platforms = {
9
- 'develop' : ['rockylinux:8' , 'rockylinux:9' , 'debian:11' , 'debian:12' , 'ubuntu:20.04' , 'ubuntu:22.04' , 'ubuntu:24.04' ],
10
- 'stable-23.10' : ['rockylinux:8' , 'rockylinux:9' , 'debian:11' , 'debian:12' , 'ubuntu:20.04' , 'ubuntu:22.04' ,'ubuntu:24.04' ],
9
+ 'develop' : ['rockylinux:8' , 'rockylinux:9' ,
10
+ // TODO restore me
11
+ // 'debian:11', 'debian:12', 'ubuntu:20.04', 'ubuntu:22.04', 'ubuntu:24.04',]0
12
+ ],
13
+ 'stable-23.10' : ['rockylinux:8' , 'rockylinux:9' ,
14
+ // TODO restore me
15
+ // 'debian:11', 'debian:12', 'ubuntu:20.04', 'ubuntu:22.04','ubuntu:24.04'
16
+ ],
11
17
};
12
18
13
19
local platforms_arm = {
@@ -909,8 +915,9 @@ local FinalPipeline(branch, event) = {
909
915
'failure' ,
910
916
],
911
917
} + (if event == 'cron' then { cron: ['nightly-' + std.strReplace (branch, '.' , '-' )] } else {}),
912
- depends_on: std.map (function (p) std.join (' ' , [branch, p, event, 'amd64' , '10.6-enterprise' ]), platforms.develop) +
913
- std.map (function (p) std.join (' ' , [branch, p, event, 'arm64' , '10.6-enterprise' ]), platforms_arm.develop),
918
+ depends_on: std.map (function (p) std.join (' ' , [branch, p, event, 'amd64' , '10.6-enterprise' ]), platforms.develop)
919
+ // TODO restore me
920
+ // + std.map(function(p) std.join(' ', [branch, p, event, 'arm64', '10.6-enterprise']), platforms_arm.develop),
914
921
};
915
922
916
923
[
@@ -920,13 +927,14 @@ local FinalPipeline(branch, event) = {
920
927
for s in servers[b]
921
928
for e in events
922
929
] +
923
- [
924
- Pipeline(b, p, e, 'arm64' , s)
925
- for b in std.objectFields (platforms_arm)
926
- for p in platforms_arm[b]
927
- for s in servers[b]
928
- for e in events
929
- ] +
930
+ // TODO restore me
931
+ // [
932
+ // Pipeline(b, p, e, 'arm64', s)
933
+ // for b in std.objectFields(platforms_arm)
934
+ // for p in platforms_arm[b]
935
+ // for s in servers[b]
936
+ // for e in events
937
+ // ] +
930
938
931
939
[
932
940
FinalPipeline(b, 'cron' )
@@ -936,8 +944,10 @@ local FinalPipeline(branch, event) = {
936
944
[
937
945
Pipeline(any_branch, p, 'custom' , 'amd64' , '10.6-enterprise' )
938
946
for p in platforms_custom
939
- ] +
940
- [
941
- Pipeline(any_branch, p, 'custom' , 'arm64' , '10.6-enterprise' )
942
- for p in platforms_arm_custom
943
947
]
948
+ // TODO restore me
949
+ // +
950
+ // [
951
+ // Pipeline(any_branch, p, 'custom', 'arm64', '10.6-enterprise')
952
+ // for p in platforms_arm_custom
953
+ // ]
0 commit comments