[PECL-CVS] [pecl-encryption-mcrypt] master: Merge pull request #25 from shivammathur/ci
[email protected] (Shivam Mathur via GitHub) Thu, 8 Jan 2026 16:51:33 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Shivam Mathur (shivammathur)
Committer: GitHub (web-flow)
Pusher: shivammathur
Date: 2026-01-08T22:19:18+05:30
Commit: https://github.com/php/pecl-encryption-mcrypt/commit/9f4289a995889b39a7713c183040cf2c15219c33
Raw diff: https://github.com/php/pecl-encryption-mcrypt/commit/9f4289a995889b39a7713c183040cf2c15219c33.diff
Merge pull request #25 from shivammathur/ci
ci: fix libraries in workflow
Changed paths:
M .github/workflows/build.yml
Diff:
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