From 21ffd343e1649fd2440840b3648d66691955b0e8 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Wed, 1 Dec 2021 19:30:42 -0600 Subject: [PATCH] CI: woodpecker: use matrix builds --- .woodpecker.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index b7e9778..305bf70 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,6 +7,10 @@ pipeline: - meson _build - meson compile -C _build - meson test -v -C _build + when: + matrix: + IMAGE: debian + BUILD: meson debian-autotools: image: debian @@ -17,6 +21,10 @@ pipeline: - ./configure - make -j - make distcheck + when: + matrix: + IMAGE: debian + BUILD: autotools alpine-meson: image: alpine @@ -25,6 +33,10 @@ pipeline: - meson _build - meson compile -C _build - meson test -v -C _build + when: + matrix: + IMAGE: alpine + BUILD: meson alpine-autotools: image: alpine @@ -34,3 +46,15 @@ pipeline: - ./configure - make -j - make distcheck + when: + matrix: + IMAGE: alpine + BUILD: autotools + +matrix: + IMAGE: + - debian + - alpine + BUILD: + - meson + - autotools