drone: Move setup to a separate step

This commit is contained in:
June Tate-Gans 2024-03-28 19:52:04 -05:00
parent 525b410cc2
commit 40440da3ac

View File

@ -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
---