Skip to content

Commit

Permalink
Add GMP extension to PHP setup in CI workflows
Browse files Browse the repository at this point in the history
The GMP extension was added to the list of PHP extensions in multiple CI workflows to support functionalities requiring it. This ensures the workflows are aligned with application dependencies and enhances compatibility.
  • Loading branch information
Spomky committed Dec 12, 2024
1 parent ba6962b commit 1fd367d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor

- name: "Checkout code"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor

- name: "Checkout code"
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor
coverage: "xdebug"

Expand All @@ -106,7 +106,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor

- name: "Checkout code"
Expand All @@ -132,7 +132,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor

- name: "Checkout code"
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor

- name: "Checkout code"
Expand All @@ -187,7 +187,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
extensions: "json, mbstring, openssl, sqlite3, curl, uuid"
extensions: "gmp, json, mbstring, openssl, sqlite3, curl, uuid"
tools: castor
coverage: "xdebug"

Expand Down

0 comments on commit 1fd367d

Please sign in to comment.