From 51de7ef7c55a47e744e5b3d5bb94612e8a54eb25 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Thu, 21 Dec 2023 16:54:19 +0100 Subject: [PATCH] .github/workflows/build.yml: Add a "Check expected plugins" step. --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77fa197e8..d876642d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,6 +75,11 @@ jobs: path: "*.log" - name: Report check status run: exit $(< make-check.status) + - name: Check expected plugins + run: | + if [[ -e ".expected-plugins/${{ matrix.container_tag }}" ]]; then + /checks/check-built-plugins.sh ".expected-plugins/${{ matrix.container_tag }}" + fi experimental: runs-on: ubuntu-latest -- 2.47.2