Skip to content

Commit 1089fcb

Browse files
committed
Merge branch '4.2.x' into 4.3.x
2 parents 10ed011 + d6cfa1f commit 1089fcb

27 files changed

+36
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ jobs:
245245
uses: "shivammathur/setup-php@v2"
246246
with:
247247
php-version: "${{ matrix.php-version }}"
248+
env:
249+
fail-fast: true
248250

249251
- name: "Lower minimum stability"
250252
run: "composer config minimum-stability dev"

.github/workflows/nightly.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
- cron: "12 3 * * *"
66
workflow_dispatch:
77

8-
env:
9-
fail-fast: true
10-
118
jobs:
129
phpunit-mariadb-devel:
1310
name: "PHPUnit with MariaDB"
@@ -50,6 +47,8 @@ jobs:
5047
coverage: "pcov"
5148
ini-values: "zend.assertions=1"
5249
extensions: "${{ matrix.extension }}"
50+
env:
51+
fail-fast: true
5352

5453
- name: "Install dependencies with Composer"
5554
uses: "ramsey/composer-install@v3"

.github/workflows/phpunit-db2.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
coverage: pcov
4848
ini-values: zend.assertions=1
4949
env:
50+
fail-fast: true
5051
IBM_DB2_CONFIGURE_OPTS: '--with-IBM_DB2=/tmp/clidriver'
5152

5253
- name: Install dependencies with Composer

.github/workflows/phpunit-mariadb.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
extensions: ${{ inputs.extension }}
4040
coverage: pcov
4141
ini-values: zend.assertions=1
42+
env:
43+
fail-fast: true
4244

4345
- name: Install dependencies with Composer
4446
uses: ramsey/composer-install@v3

.github/workflows/phpunit-mysql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
extensions: ${{ inputs.extension }}
4444
coverage: pcov
4545
ini-values: zend.assertions=1
46+
env:
47+
fail-fast: true
4648

4749
- name: Install dependencies with Composer
4850
uses: ramsey/composer-install@v3

.github/workflows/phpunit-oracle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
extensions: ${{ inputs.extension }}
4242
coverage: pcov
4343
ini-values: zend.assertions=1
44+
env:
45+
fail-fast: true
4446

4547
- name: Install dependencies with Composer
4648
uses: ramsey/composer-install@v3

.github/workflows/phpunit-postgres.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
extensions: ${{ inputs.extension }}
4343
coverage: pcov
4444
ini-values: zend.assertions=1
45+
env:
46+
fail-fast: true
4547

4648
- name: Install dependencies with Composer
4749
uses: ramsey/composer-install@v3

.github/workflows/phpunit-sqlite.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
php-version: ${{ inputs.php-version }}
3131
coverage: pcov
3232
ini-values: zend.assertions=1
33+
env:
34+
fail-fast: true
3335

3436
- name: Install dependencies with Composer
3537
uses: ramsey/composer-install@v3

.github/workflows/phpunit-sqlserver.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
coverage: pcov
4242
ini-values: zend.assertions=1
4343
tools: pecl
44+
env:
45+
fail-fast: true
4446

4547
- name: Install dependencies with Composer
4648
uses: ramsey/composer-install@v3

ci/appveyor/mssql.sql2017.pdo_sqlsrv.appveyor.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
failOnRisky="true"
77
failOnWarning="true"
88
displayDetailsOnTestsThatTriggerWarnings="true"
9+
displayDetailsOnPhpunitDeprecations="true"
910
>
1011
<php>
1112
<var name="db_driver" value="pdo_sqlsrv"/>

0 commit comments

Comments
 (0)