Skip to content
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
45 changes: 35 additions & 10 deletions .evergreen/config/generated/build/build-extension.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions .evergreen/config/templates/build/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
vars:
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
# TODO: Remove vars to switch to latest stable version when 2.3.0 is released
vars:
EXTENSION_BRANCH: "v2.x"
Comment thread
GromNaN marked this conversation as resolved.
- func: "upload extension"
- name: "build-php-%phpVersion%-lowest"
tags: ["build", "php%phpVersion%", "lowest", "pr", "tag"]
Expand All @@ -13,8 +16,9 @@
vars:
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
# TODO: Switch to EXTENSION_VERSION: "2.3.0" when 2.3.0 is released on PECL
vars:
EXTENSION_VERSION: "2.2.0"
EXTENSION_BRANCH: "v2.x"
- func: "upload extension"
Comment thread
GromNaN marked this conversation as resolved.
- name: "build-php-%phpVersion%-next-stable"
tags: ["build", "php%phpVersion%", "next-stable", "pr", "tag"]
Expand All @@ -23,8 +27,9 @@
vars:
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
# TODO: Switch to EXTENSION_VERSION: "2.3.0" when 2.3.0 is released on PECL
vars:
EXTENSION_BRANCH: "v2.2"
EXTENSION_BRANCH: "v2.x"
Comment thread
GromNaN marked this conversation as resolved.
- func: "upload extension"
- name: "build-php-%phpVersion%-next-minor"
tags: ["build", "php%phpVersion%", "next-minor"]
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ on:

env:
PHP_VERSION: "8.2"
DRIVER_VERSION: "stable"
# TODO: change to "stable" once 2.3.0 is released
# DRIVER_VERSION: "stable"
DRIVER_VERSION: "mongodb/mongo-php-driver@v2.x"
Comment thread
GromNaN marked this conversation as resolved.

jobs:
phpcs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ on:

env:
PHP_VERSION: "8.2"
DRIVER_VERSION: "stable"
# TODO: change to "stable" once 2.3.0 is released
# DRIVER_VERSION: "stable"
DRIVER_VERSION: "mongodb/mongo-php-driver@v2.x"
Comment thread
GromNaN marked this conversation as resolved.

jobs:
diff:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ on:

env:
PHP_VERSION: "8.5"
DRIVER_VERSION: "stable"
# TODO: change to "stable" once 2.3.0 is released
# DRIVER_VERSION: "stable"
DRIVER_VERSION: "mongodb/mongo-php-driver@v2.x"
Comment thread
GromNaN marked this conversation as resolved.

jobs:
psalm:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ on:
- "feature/*"

env:
DRIVER_VERSION: "stable"
# TODO: change to "stable" once 2.3.0 is released
# DRIVER_VERSION: "stable"
DRIVER_VERSION: "mongodb/mongo-php-driver@v2.x"
Comment thread
GromNaN marked this conversation as resolved.

jobs:
phpunit:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"require": {
"php": "^8.1",
"ext-mongodb": "^2.2",
"ext-mongodb": "^2.3",
"composer-runtime-api": "^2.0",
"psr/log": "^1.1.4|^2|^3",
"symfony/polyfill-php85": "^1.33"
Expand Down
Loading