Skip to content
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

[For 10.4] Drop php 7.0 bump phpunit7 #36290

Merged
merged 25 commits into from
Nov 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a1c05d3
Set min PHP version to 7.1
Feb 7, 2018
fde139b
PHP 7.1+ is required
DeepDiver1975 Feb 7, 2018
bda23f2
[Workaround] .... until https://github.com/sebastianbergmann/phpunit-…
DeepDiver1975 Feb 12, 2018
597a6b6
Dismiss OCPostgreSqlPlatform as issues it addresses were fixed in doc…
VicDeo Apr 18, 2018
84c3457
Remove our own sqlite autoincrement hack
DeepDiver1975 Jul 24, 2018
b5c144e
Add mariadb 10.3 to Drone
Oct 22, 2018
b062a80
Detect MariaDB > 10.3.1 and assume mb4 support
Nov 7, 2018
e0fa778
Remove obsolete MariaDB 10.2 workaround
Nov 7, 2018
1e7da15
Add MySQL 8 which defaults to mb4 mode
Nov 8, 2018
b9a8484
Unit tests for mysql mb4 detection
Nov 15, 2018
6677f75
Adjust drone for PHP7.1 like master
phil-davis Mar 30, 2019
77a38e4
Use is_iterable for PHP7.1
phil-davis Jul 11, 2019
3d5f525
Update to PHP 7.1 in travis - in case we use it
phil-davis Jul 11, 2019
658224b
Put back empty line in db_structure.xml that was removed by PR 34783
phil-davis Jul 11, 2019
f6e0cea
Remove special PHP7.0 checks from Makefile
phil-davis Jul 11, 2019
3c25418
Make sure to have at least doctrine/dbal 2.8
phil-davis Jul 11, 2019
28ae4a6
Revert "Revert void return type declarations that are not valid in PH…
phil-davis Jul 31, 2019
11f7163
Updating phpunit/phpunit (6.5.14 => 7.5.13)
phil-davis Mar 22, 2019
da56091
Adjust startsessionlistener.php for PHPUnit7 method signatures
phil-davis Mar 22, 2019
5f2c3eb
cleaner-ignore phpunit/phpunit phpunit.xsd
phil-davis Mar 23, 2019
c03dbb8
ApiTest testUpdateShare ensure message is a string before passing
phil-davis Mar 23, 2019
c25d418
Do not try to mock private method themeExist
phil-davis Mar 23, 2019
e031bbf
Adjust LegacyDBTest testDecimal to pass on sqlite
phil-davis Mar 23, 2019
61b36a0
Adjust floating point test case in SharingBlacklistTest
phil-davis Oct 18, 2019
aad53a2
Handle inline column comments in DbHandlerTest.php
phil-davis Nov 7, 2019
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
12 changes: 7 additions & 5 deletions .drone.starlark
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ config = {
},
'reducedDatabases' : {
'phpVersions': [
'7.0',
'7.2',
'7.3',
],
Expand Down Expand Up @@ -983,9 +982,9 @@ def phptests(testType):
errorFound = False

default = {
'phpVersions': ['7.0', '7.1', '7.2', '7.3'],
'phpVersions': ['7.1', '7.2', '7.3'],
'databases': [
'sqlite', 'mariadb:10.2', 'mysql:5.5', 'mysql:5.7', 'postgres:9.4', 'oracle'
'sqlite', 'mariadb:10.2', 'mariadb:10.3', 'mysql:5.5', 'mysql:5.7', 'mysql:8.0', 'postgres:9.4', 'postgres:10.3', 'oracle'
],
'coverage': True,
'includeKeyInMatrixName': False,
Expand Down Expand Up @@ -1418,7 +1417,7 @@ def notify():
def databaseService(db):
dbName = getDbName(db)
if (dbName == 'mariadb') or (dbName == 'mysql'):
return [{
service = {
'name': dbName,
'image': db,
'pull': 'always',
Expand All @@ -1428,7 +1427,10 @@ def databaseService(db):
'MYSQL_DATABASE': getDbDatabase(db),
'MYSQL_ROOT_PASSWORD': getDbRootPassword()
}
}]
}
if (db == 'mysql:8.0'):
service['command'] = ['--default-authentication-plugin=mysql_native_password']
return [service]

if dbName == 'postgres':
return [{
Expand Down
Loading