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 name: tests
steps: steps:
- name: test - name: setup
image: archlinux:latest image: archlinux:latest
settings: settings:
@ -22,6 +22,10 @@ steps:
commands: commands:
- pacman -Sy --noconfirm - pacman -Sy --noconfirm
- pacman -S --noconfirm base-devel python meson lsb-release git - pacman -S --noconfirm base-devel python meson lsb-release git
- name: test
image: archlinux:latest
commands:
- make test - make test
--- ---