From 6b91aa23a7e859aff6e029ba0858531936d08859 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Mon, 20 Apr 2026 22:36:20 -0700 Subject: [PATCH] Add ARM64 to Drone CI platform list Add linux/arm64 to all three TLS variant build steps so the registry gets multi-arch manifests. --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.drone.yml b/.drone.yml index 7947cce..8fbdf10 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,9 @@ --- kind: pipeline name: default +platform: + os: linux + arch: amd64 steps: - name: docker_openssl image: plugins/docker @@ -19,6 +22,9 @@ steps: - openssl build_args: - TLSTYPE=openssl + platforms: + - linux/amd64 + - linux/arm64 - name: docker_gnutls image: plugins/docker settings: @@ -35,6 +41,9 @@ steps: - gnutls build_args: - TLSTYPE=gnutls + platforms: + - linux/amd64 + - linux/arm64 - name: docker_nss image: plugins/docker settings: @@ -51,3 +60,6 @@ steps: - nss build_args: - TLSTYPE=nss + platforms: + - linux/amd64 + - linux/arm64