Skip to content

[WIP] Investigating freeing of invalid pointer on shutdown #638

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

Closed
wants to merge 1 commit into from
Closed
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
58 changes: 18 additions & 40 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,75 +40,53 @@ jobs:
env:
- CHECKS=phpcs

# Test remaining supported PHP versions
- stage: Test
php: "5.6"
- stage: Test
php: "7.0"
- stage: Test
php: "7.1"
- stage: Test
php: "7.2"
- stage: Test
php: "7.4snapshot"

# Test against lowest supported dependencies
# Test other server configurations
- stage: Test
php: "5.6"
env:
- COMPOSER_OPTIONS=--prefer-lowest

# Test older standalone server versions (3.0-4.0)
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.0"
dist: trusty
php: "5.6"
env:
- SERVER_DISTRO=ubuntu1404
- SERVER_VERSION=3.0.15
- DEPLOYMENT=STANDALONE_OLD
- DEPLOYMENT=SHARDED_CLUSTER_RS
- stage: Test
php: "7.0"
env:
- SERVER_VERSION=3.2.22
- DEPLOYMENT=STANDALONE_OLD
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.0"
env:
- SERVER_VERSION=3.4.21
- DEPLOYMENT=STANDALONE_OLD
- DEPLOYMENT=SHARDED_CLUSTER_RS
- stage: Test
php: "7.0"
php: "7.1"
env:
- SERVER_VERSION=3.6.13
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.3"
php: "7.1"
env:
- SERVER_VERSION=4.0.12

# Test other server configurations
- DEPLOYMENT=SHARDED_CLUSTER_RS
- stage: Test
php: "7.3"
php: "7.2"
env:
- DEPLOYMENT=STANDALONE_AUTH
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.3"
php: "7.2"
env:
- DEPLOYMENT=STANDALONE_SSL
- DEPLOYMENT=SHARDED_CLUSTER_RS
- stage: Test
php: "7.3"
env:
- SERVER_VERSION=3.6.13
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.3"
env:
- DEPLOYMENT=REPLICASET
- DEPLOYMENT=SHARDED_CLUSTER_RS
- stage: Test
php: "7.3"
php: "7.4snapshot"
env:
- DEPLOYMENT=SHARDED_CLUSTER
- DEPLOYMENT=REPLICASET
- stage: Test
php: "7.3"
php: "7.4snapshot"
env:
- DEPLOYMENT=SHARDED_CLUSTER_RS

Expand Down