Skip to content

Commit

Permalink
Run tests in CI with PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Apr 23, 2020
1 parent 05898d8 commit d6b88c8
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ config = {
'allDatabases' : {
'phpVersions': [
'7.2',
'7.4',
]
},
'reducedDatabases' : {
Expand All @@ -40,7 +41,7 @@ config = {
},
'external-samba-windows' : {
'phpVersions': [
'7.2',
'7.4',
],
'databases': [
'sqlite',
Expand All @@ -59,7 +60,7 @@ config = {
},
'external-other' : {
'phpVersions': [
'7.2',
'7.4',
],
'databases': [
'sqlite',
Expand Down Expand Up @@ -590,7 +591,7 @@ def phpstan():
return pipelines

default = {
'phpVersions': ['7.2'],
'phpVersions': ['7.4'],
'logLevel': '2',
}

Expand Down Expand Up @@ -667,7 +668,7 @@ def phan():
return pipelines

default = {
'phpVersions': ['7.2', '7.3'],
'phpVersions': ['7.2', '7.3', '7.4'],
'logLevel': '2',
}

Expand Down Expand Up @@ -744,7 +745,7 @@ def litmus():
return pipelines

default = {
'phpVersions': ['7.2'],
'phpVersions': ['7.4'],
'logLevel': '2'
}

Expand Down Expand Up @@ -909,7 +910,7 @@ def dav():
return pipelines

default = {
'phpVersions': ['7.2'],
'phpVersions': ['7.4'],
'logLevel': '2'
}

Expand Down Expand Up @@ -1007,7 +1008,7 @@ def javascript():
default = {
'coverage': True,
'logLevel': '2',
'phpVersion': '7.2'
'phpVersion': '7.4'
}

if 'defaults' in config:
Expand Down Expand Up @@ -1103,7 +1104,7 @@ def phptests(testType):
errorFound = False

default = {
'phpVersions': ['7.2', '7.3'],
'phpVersions': ['7.2', '7.3', '7.4'],
'databases': [
'sqlite', 'mariadb:10.2', 'mariadb:10.3', 'mariadb:10.4', 'mysql:5.5', 'mysql:5.7', 'mysql:8.0', 'postgres:9.4', 'postgres:10.3', 'oracle'
],
Expand Down Expand Up @@ -1287,7 +1288,7 @@ def acceptance():
default = {
'federatedServerVersions': [''],
'browsers': ['chrome'],
'phpVersions': ['7.2'],
'phpVersions': ['7.4'],
'databases': ['mariadb:10.2'],
'federatedServerNeeded': False,
'filterTags': '',
Expand Down

0 comments on commit d6b88c8

Please sign in to comment.