From 8e9b6e465e9218e92238c934f8ee607935239338 Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Sat, 27 Nov 2021 13:00:50 +0100 Subject: [PATCH] added arm64 to ci builds --- .drone.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.drone.yml b/.drone.yml index d2e200b..daa67f8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -44,6 +44,31 @@ volumes: depends_on: - cleanup-before +--- +kind: pipeline +type: docker +name: default-linux-arm64 + +steps: + - name: build + image: golang + commands: + - ./ci-build.sh build + environment: + GOOS: linux + GOARCH: arm64 + volumes: + - name: build + path: /build + +volumes: + - name: build + host: + path: /tmp/go-aptproxy/build + +depends_on: + - cleanup-before + --- kind: pipeline type: docker @@ -92,6 +117,7 @@ volumes: depends_on: - default-linux-amd64 + - default-linux-arm64 --- kind: pipeline