From b19688a79cded70573485632b7ec0cd9ac118dc7 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Tue, 13 Dec 2022 16:05:39 +0100 Subject: [PATCH] Remove builds I don't personally care about Signed-off-by: Jacob Kiers --- .drone.jsonnet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 2908a7e..c727463 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -1,10 +1,10 @@ local executableName = 'newsletter-to-web'; local archs = [ - { target: 'aarch64-unknown-linux-gnu', short: 'arm64-gnu' }, + // { target: 'aarch64-unknown-linux-gnu', short: 'arm64-gnu' }, { target: 'aarch64-unknown-linux-musl', short: 'arm64-musl' }, { target: 'x86_64-pc-windows-gnu', short: 'windows' }, - { target: 'x86_64-unknown-linux-gnu', short: 'amd64-gnu' }, + // { target: 'x86_64-unknown-linux-gnu', short: 'amd64-gnu' }, { target: 'x86_64-unknown-linux-musl', short: 'amd64-musl' }, ];