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
40 changes: 20 additions & 20 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.

10 changes: 5 additions & 5 deletions .evergreen/config/templates/build/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
vars:
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
# TODO: Remove vars to switch to latest stable version when 2.1.0 is releeased
# TODO: Remove vars to switch to latest stable version when 2.2.0 is releeased
vars:
EXTENSION_BRANCH: "v2.x"
- func: "upload extension"
Expand All @@ -17,8 +17,8 @@
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
vars:
# TODO: Switch to 2.1.0 when it is released
# EXTENSION_VERSION: "2.0.0"
# TODO: Switch to 2.2.0 when it is released
# EXTENSION_VERSION: "2.2.0"
EXTENSION_BRANCH: "v2.x"
- func: "upload extension"
- name: "build-php-%phpVersion%-next-stable"
Expand All @@ -29,8 +29,8 @@
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
vars:
# TODO: Switch to v2.1 when 2.1.0 is released
# EXTENSION_VERSION: "v2.1"
# TODO: Switch to v2.2 when 2.2.0 is released
# EXTENSION_BRANCH: "v2.2"
EXTENSION_BRANCH: "v2.x"
- func: "upload extension"
- name: "build-php-%phpVersion%-next-minor"
Expand Down

This file was deleted.

7 changes: 7 additions & 0 deletions tests/UnifiedSpecTests/UnifiedSpecTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ class UnifiedSpecTest extends FunctionalTestCase
'sessions/snapshot-sessions: Aggregate operation with snapshot and snapshot time' => 'getSnapshotTime not implemented yet (PHPLIB-1725)',
'sessions/snapshot-sessions: countDocuments operation with snapshot and snapshot time' => 'getSnapshotTime not implemented yet (PHPLIB-1725)',
'sessions/snapshot-sessions: Mixed operation with snapshot and snapshotTime' => 'getSnapshotTime not implemented yet (PHPLIB-1725)',
'sessions/snapshot-sessions: Find operation with snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/snapshot-sessions: Distinct operation with snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/snapshot-sessions: Aggregate operation with snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/snapshot-sessions: countDocuments operation with snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/snapshot-sessions: Mixed operation with snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/snapshot-sessions: Write commands with snapshot session do not affect snapshot reads' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
'sessions/implicit sessions default causal consistency: afterClusterTime is not sent on retried read in implicit session when readConcern level is snapshot' => 'Cluster time is not sent in first command sent out on single-threaded connections (PHPC-2655)',
Comment on lines +77 to +83
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you have to skip this tests now, without updating the specifications submodule.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This branch pulls in the newer extension version, which brings in libmongoc 2.2.1. An issue (CDRIVER-6173) breaks cluster time gossiping for single-threaded connections, breaking these tests.

];

/** @var array<string, string> */
Expand Down
Loading