From 488604f8af1281dadd26c8adc33a1fb772e16920 Mon Sep 17 00:00:00 2001 From: Sumedh Alok Sharma Date: Tue, 3 Dec 2024 00:06:06 +0530 Subject: [PATCH] ci: install libdevmapper for agent static checks Install libdevmapper for agent make test check. Signed-off-by: Sumedh Alok Sharma --- .github/workflows/static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index 06bbe5f7bc50..be6a9f1fa9da 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -108,7 +108,7 @@ jobs: if: ${{ matrix.component != 'runtime' }} run: sudo apt-get -y install musl-tools - name: Install devicemapper - if: ${{ matrix.command == 'make check' && matrix.component == 'agent' }} + if: ${{ (matrix.command == 'make check' || matrix.command == 'make test') && matrix.component == 'agent' }} run: sudo apt-get -y install libdevmapper-dev - name: Install libseccomp if: ${{ matrix.command != 'make vendor' && matrix.command != 'make check' && matrix.install-libseccomp == 'yes' }}