10000 Merge 3.9.x up into 4.2.x by morozov · Pull Request #6955 · doctrine/dbal · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge 3.9.x up into 4.2.x #6955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
env:
fail-fast: true

- name: "Lower minimum stability"
run: "composer config minimum-stability dev"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
schedule:
- cron: "12 3 * * *"

env:
fail-fast: true

jobs:
phpunit-mariadb-devel:
name: "PHPUnit with MariaDB"
Expand Down Expand Up @@ -50,6 +47,8 @@ jobs:
coverage: "pcov"
ini-values: "zend.assertions=1"
extensions: "${{ matrix.extension }}"
env:
fail-fast: true

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v3"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpunit-db2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true
IBM_DB2_CONFIGURE_OPTS: '--with-IBM_DB2=/tmp/clidriver'

- name: Install dependencies with Composer
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
extensions: ${{ inputs.extension }}
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
extensions: ${{ inputs.extension }}
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
extensions: ${{ inputs.extension }}
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
extensions: ${{ inputs.extension }}
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
php-version: ${{ inputs.php-version }}
coverage: pcov
ini-values: zend.assertions=1
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/phpunit-sqlserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
coverage: pcov
ini-values: zend.assertions=1
tools: pecl
env:
fail-fast: true

- name: Install dependencies with Composer
uses: ramsey/composer-install@v3
Expand Down
0