From 5edb9487e7b4b2eca0cc98a102a795c0f8883425 Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sun, 21 Feb 2021 20:51:55 +0100 Subject: [PATCH] GitHub Actions: test Arch Linux distro --- .github/workflows/build-policy.yml | 3 ++- .github/workflows/diff-policy.yml | 3 ++- .github/workflows/validate-policy.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-policy.yml b/.github/workflows/build-policy.yml index b0279f045..8acb0e3b9 100644 --- a/.github/workflows/build-policy.yml +++ b/.github/workflows/build-policy.yml @@ -30,13 +30,14 @@ jobs: strategy: matrix: # matrix updates must also be duplicated to validate-policy.yml and diff-policy.yml - distro: ["redhat", "debian", "gentoo"] + distro: ["arch", "redhat", "debian", "gentoo"] type: ["standard", "mcs", "mls"] monolithic: ["y", "n"] systemd: ["y", "n"] direct_initrc: ["y", "n"] apps-off: ["unconfined", ""] exclude: + - { distro: "arch", systemd: "n" } - { distro: "redhat", systemd: "n" } - { distro: "redhat", direct_initrc: "y" } - { distro: "debian", systemd: "n" } diff --git a/.github/workflows/diff-policy.yml b/.github/workflows/diff-policy.yml index d88ae17c1..20189df0e 100644 --- a/.github/workflows/diff-policy.yml +++ b/.github/workflows/diff-policy.yml @@ -22,13 +22,14 @@ jobs: strategy: matrix: - distro: ["redhat", "debian", "gentoo"] + distro: ["arch", "redhat", "debian", "gentoo"] type: ["standard", "mcs", "mls"] monolithic: ["y", "n"] systemd: ["y", "n"] direct_initrc: ["y", "n"] apps-off: ["unconfined", ""] exclude: + - { distro: "arch", systemd: "n" } - { distro: "redhat", systemd: "n" } - { distro: "redhat", direct_initrc: "y" } - { distro: "debian", systemd: "n" } diff --git a/.github/workflows/validate-policy.yml b/.github/workflows/validate-policy.yml index 31e0969fa..5230289dd 100644 --- a/.github/workflows/validate-policy.yml +++ b/.github/workflows/validate-policy.yml @@ -14,13 +14,14 @@ jobs: strategy: matrix: - distro: ["redhat", "debian", "gentoo"] + distro: ["arch", "redhat", "debian", "gentoo"] type: ["standard", "mcs", "mls"] monolithic: ["y", "n"] systemd: ["y", "n"] direct_initrc: ["y", "n"] apps-off: ["unconfined", ""] exclude: + - { distro: "arch", systemd: "n" } - { distro: "redhat", systemd: "n" } - { distro: "redhat", direct_initrc: "y" } - { distro: "debian", systemd: "n" }