chore(CI): disable build arm and arm64

This commit is contained in:
Bo-Yi Wu
2022-12-08 16:35:43 +08:00
parent 5be4214887
commit 040533909f
3 changed files with 5 additions and 151 deletions

View File

@@ -4,13 +4,13 @@ local name = 'drone-ssh';
[
pipeline.test,
pipeline.build(name, 'linux', 'amd64'),
pipeline.build(name, 'linux', 'arm64'),
pipeline.build(name, 'linux', 'arm'),
// pipeline.build(name, 'linux', 'arm64'),
// pipeline.build(name, 'linux', 'arm'),
pipeline.release,
pipeline.notifications(depends_on=[
'linux-amd64',
'linux-arm64',
'linux-arm',
// 'linux-arm64',
// 'linux-arm',
'release-binary',
]),
]