From 40440da3acc13cc4663bd083e4b5238d65fb38f8 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Thu, 28 Mar 2024 19:52:04 -0500 Subject: [PATCH] drone: Move setup to a separate step --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 4ee2e4e..85159f1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ type: kubernetes name: tests steps: - - name: test + - name: setup image: archlinux:latest settings: @@ -22,6 +22,10 @@ steps: commands: - pacman -Sy --noconfirm - pacman -S --noconfirm base-devel python meson lsb-release git + + - name: test + image: archlinux:latest + commands: - make test ---