From 353c9b37af1e06566814376350cc109f512185cd Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Fri, 8 Aug 2025 13:46:51 +0000 Subject: [PATCH] ci: fix libraries in workflow --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d0070..6d1c535 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: arch: ${{ matrix.arch }} ts: ${{ matrix.ts }} args: --with-mcrypt - libs: libmcrypt + libs: libmcrypt, dirent linux: runs-on: ubuntu-latest @@ -61,7 +61,9 @@ jobs: php-version: "${{ matrix.php }}" coverage: none tools: pecl - deps: "libmcrypt" + + - name: Install dependencies + run: sudo apt-get install -y libmcrypt-dev - name: Compile run: phpize && ./configure && make all