From ffd83eeb18fce475210166919af7ee5a701fce50 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Thu, 7 Apr 2022 22:01:59 +0200 Subject: [PATCH] Vieter releases are now also aarch64 --- .woodpecker/.arch.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.arch.yml b/.woodpecker/.arch.yml index 3fdf102..ab3c6ea 100644 --- a/.woodpecker/.arch.yml +++ b/.woodpecker/.arch.yml @@ -1,9 +1,14 @@ -platform: linux/amd64 +matrix: + PLATFORM: + - linux/amd64 + - linux/arm64 + +platform: ${PLATFORM} branches: [dev] pipeline: build: - image: 'archlinux:base-devel' + image: 'menci/archlinuxarm:base-devel' commands: # Update packages - pacman -Syu --noconfirm @@ -17,7 +22,7 @@ pipeline: - makepkg -s --noconfirm --needed publish: - image: 'archlinux:base-devel' + image: 'curlimages/curl' commands: # Publish the package - 'for pkg in $(ls -1 *.pkg*); do curl -XPOST -T "$pkg" -H "X-API-KEY: $VIETER_API_KEY" https://arch.r8r.be/vieter/publish; done'