From 14515dbab36dc4fa1fdd0610efef1fa7055ec684 Mon Sep 17 00:00:00 2001 From: AFCMS Date: Mon, 28 Oct 2024 22:48:15 +0100 Subject: [PATCH] Fix pipeline matrix --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 53a03c09..ea34aafd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,10 +14,13 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - meson_args: - - '-Druntime-dependency-checks=false' - - '-Druntime-dependency-checks=false -Dbuildtype=plain' - - '-Druntime-dependency-checks=false -Dbuildtype=release' + include: + - name: debug + meson_args: '-Druntime-dependency-checks=false' + - name: plain + meson_args: '-Druntime-dependency-checks=false -Dbuildtype=plain' + - name: release + meson_args: '-Druntime-dependency-checks=false -Dbuildtype=release' steps: - uses: actions/checkout@v4 - uses: libratbag/libratbag/.github/actions/pkginstall@master