Skip to content

Commit 6268a2f

Browse files
authored
Merge pull request #4110 from neos/task/speed-up-ci-run
TASK: Speed up CI build
2 parents 4398cdd + cbfca2d commit 6268a2f

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ jobs:
115115
with:
116116
php-version: ${{ matrix.php-versions }}
117117
extensions: mbstring, xml, json, zlib, iconv, intl, pdo_sqlite, mysql, pgsql, redis, memcached, memcache, apcu
118-
coverage: xdebug #optional
119118
ini-values: date.timezone="Africa/Tunis", opcache.fast_shutdown=0, apc.enable_cli=on
120119

121120
- name: Checkout development distribution
@@ -252,7 +251,7 @@ jobs:
252251
# DEBUG MODE: ALTERNATIVELY, comment in the following lines to dump the DB.
253252
# do not exit the script if the tests break; as we want to upload the database dumps afterwards.
254253
set +e
255-
composer test:behavioral:stop-on-failure
254+
CATCHUPTRIGGER_ENABLE_SYNCHRONOUS_OPTION=1 composer test:behavioral:stop-on-failure
256255
retVal=$?
257256
258257
# automatically search for race conditions

Neos.Neos/Tests/Behavior/Features/Bootstrap/RoutingTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ private function resolveUrl(string $nodeAggregateId, string $contentStreamId, st
290290
if ($this->requestUrl === null) {
291291
$this->iAmOnUrl('/');
292292
}
293-
putenv('FLOW_REWRITEURLS=1');
294293
$nodeAddress = new NodeAddress(
295294
ContentStreamId::fromString($contentStreamId),
296295
DimensionSpacePoint::fromJsonString($dimensionSpacePoint),

Neos.Neos/Tests/Behavior/Features/FrontendRouting/Basic.feature

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@ Feature: Basic routing functionality (match & resolve document nodes in one dime
88
And I have the following NodeTypes configuration:
99
"""
1010
'Neos.Neos:Sites': {}
11+
'Neos.Neos:Document': {}
12+
'Neos.Neos:Content': {}
1113
'Neos.EventSourcedNeosAdjustments:Test.Routing.Page':
14+
superTypes:
15+
'Neos.Neos:Document': true
1216
properties:
1317
uriPathSegment:
1418
type: string
1519
'Neos.EventSourcedNeosAdjustments:Test.Routing.Content':
20+
superTypes:
21+
'Neos.Neos:Content': true
1622
properties:
1723
uriPathSegment:
1824
type: string
@@ -37,7 +43,6 @@ Feature: Basic routing functionality (match & resolve document nodes in one dime
3743
# earl-o-documentbourgh
3844
# nody-mc-nodeface
3945
#
40-
# NOTE: The "nodeName" column only exists because it's currently not possible to create unnamed nodes (see https://github.com/neos/contentrepository-development-collection/pull/162)
4146
And I am in content stream "cs-identifier" and dimension space point {}
4247
And the following CreateNodeAggregateWithNode commands are executed:
4348
| nodeAggregateId | parentNodeAggregateId | nodeTypeName | initialPropertyValues | nodeName |

Neos.Neos/Tests/Behavior/Features/FrontendRouting/Dimensions.feature

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Feature: Routing functionality with multiple content dimensions
2121
| coveredDimensionSpacePoints | [{"market":"DE", "language":"en"},{"market":"DE", "language":"de"},{"market":"DE", "language":"gsw"},{"market":"CH", "language":"en"},{"market":"CH", "language":"de"},{"market":"CH", "language":"gsw"}] |
2222
| nodeAggregateClassification | "root" |
2323
And the graph projection is fully up to date
24-
# NOTE: The "nodeName" column only exists because it's currently not possible to create unnamed nodes (see https://github.com/neos/contentrepository-development-collection/pull/162)
2524
And I am in content stream "cs-identifier" and dimension space point {"market":"DE", "language":"en"}
2625
And the following CreateNodeAggregateWithNode commands are executed:
2726
| nodeAggregateId | parentNodeAggregateId | nodeTypeName | initialPropertyValues | nodeName |

Neos.Neos/Tests/Behavior/Features/FrontendRouting/DisableNodes.feature

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@ Feature: Routing behavior of removed, disabled and re-enabled nodes
88
And I have the following NodeTypes configuration:
99
"""
1010
'Neos.Neos:Sites': {}
11+
'Neos.Neos:Document': {}
12+
'Neos.Neos:Content': {}
1113
'Neos.EventSourcedNeosAdjustments:Test.Routing.Page':
14+
superTypes:
15+
'Neos.Neos:Document': true
1216
properties:
1317
uriPathSegment:
1418
type: string
1519
'Neos.EventSourcedNeosAdjustments:Test.Routing.Content':
20+
superTypes:
21+
'Neos.Neos:Content': true
1622
properties:
1723
uriPathSegment:
1824
type: string
@@ -38,7 +44,6 @@ Feature: Routing behavior of removed, disabled and re-enabled nodes
3844
# leaf-mc-node
3945
# nody-mc-nodeface
4046
#
41-
# NOTE: The "nodeName" column only exists because it's currently not possible to create unnamed nodes (see https://github.com/neos/contentrepository-development-collection/pull/162)
4247
And I am in content stream "cs-identifier" and dimension space point {}
4348
And the following CreateNodeAggregateWithNode commands are executed:
4449
| nodeAggregateId | parentNodeAggregateId | nodeTypeName | initialPropertyValues | nodeName |

Neos.Neos/Tests/Behavior/Features/FrontendRouting/MultiSiteLinking.feature

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Feature: Linking between multiple websites
2424
# duke-of-contentshire (content node)
2525
# earl-o-documentbourgh
2626
#
27-
# NOTE: The "nodeName" column only exists because it's currently not possible to create unnamed nodes (see https://github.com/neos/contentrepository-development-collection/pull/162)
2827
And I am in content stream "cs-identifier" and dimension space point {}
2928
And the following CreateNodeAggregateWithNode commands are executed:
3029
| nodeAggregateId | parentNodeAggregateId | nodeTypeName | initialPropertyValues | nodeName |

Neos.Neos/Tests/Behavior/Features/FrontendRouting/Shortcuts.feature

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Feature: Routing behavior of shortcut nodes
3131
# sir-david-nodenborough-ii
3232
# sir-nodeward-nodington-iii
3333
#
34-
# NOTE: The "nodeName" column only exists because it's currently not possible to create unnamed nodes (see https://github.com/neos/contentrepository-development-collection/pull/162)
3534
And I am in content stream "cs-identifier" and dimension space point {}
3635
And the following CreateNodeAggregateWithNode commands are executed:
3736
| nodeAggregateId | parentNodeAggregateId | nodeTypeName | initialPropertyValues | nodeName |

0 commit comments

Comments
 (0)