Skip to content

Commit 64aa62d

Browse files
committed
Merge branch '4.3.x' into 5.0.x
2 parents a859e1c + 941dcd9 commit 64aa62d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2161
-133
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ jobs:
243243
uses: "shivammathur/setup-php@v2"
244244
with:
245245
php-version: "${{ matrix.php-version }}"
246+
env:
247+
fail-fast: true
246248

247249
- name: "Lower minimum stability"
248250
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
beStrictAboutOutputDuringTests="true"
66
failOnRisky="true"
77
failOnWarning="true"
8+
failOnPhpunitDeprecation="true"
89
displayDetailsOnTestsThatTriggerWarnings="true"
10+
displayDetailsOnPhpunitDeprecations="true"
911
>
1012
<php>
1113
<var name="db_driver" value="pdo_sqlsrv"/>

0 commit comments

Comments
 (0)