Skip to content

Commit ede543c

Browse files
Temporarily disable ARM64 and all platforms except for Rockylinux to speed up the builds
1 parent 0abfe77 commit ede543c

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

.drone.jsonnet

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ local servers = {
66
};
77

88
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+
],
1117
};
1218

1319
local platforms_arm = {
@@ -909,8 +915,9 @@ local FinalPipeline(branch, event) = {
909915
'failure',
910916
],
911917
} + (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),
914921
};
915922

916923
[
@@ -920,13 +927,14 @@ local FinalPipeline(branch, event) = {
920927
for s in servers[b]
921928
for e in events
922929
] +
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+
// ] +
930938

931939
[
932940
FinalPipeline(b, 'cron')
@@ -936,8 +944,10 @@ local FinalPipeline(branch, event) = {
936944
[
937945
Pipeline(any_branch, p, 'custom', 'amd64', '10.6-enterprise')
938946
for p in platforms_custom
939-
] +
940-
[
941-
Pipeline(any_branch, p, 'custom', 'arm64', '10.6-enterprise')
942-
for p in platforms_arm_custom
943947
]
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

Comments
 (0)