File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Create a non-exiting version of _run_task for sequential execution
2
2
# This is used to run the tests sequentially on Windows
3
3
# because parallel is not available on Windows.
4
- _run_task_sequential () {
4
+ _run_task () {
5
5
local ok=0
6
6
local title=" $1 "
7
7
local start=$( date -u +%s)
@@ -19,12 +19,6 @@ _run_task_sequential() {
19
19
echo -e " \n\\ e[32mOK\\ e[0m $title \\ n\\ n::endgroup::"
20
20
fi
21
21
22
- return $ok
23
- }
24
- export -f _run_task_sequential
25
-
26
- _run_task () {
27
- _run_task_sequential " $1 " " $2 "
28
22
exit $?
29
23
}
30
24
export -f _run_task
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ jobs:
132
132
'(cd src/{1} \
133
133
&& $COMPOSER_MIN_STAB \
134
134
&& $COMPOSER_UP \
135
- && if [ {1} = LiveComponent ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.minimum-stability }}\"; fi \
135
+ && if [ " {1}" = " LiveComponent" ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.minimum-stability }}\"; fi \
136
136
&& $PHPUNIT)'"
137
137
138
138
js :
You can’t perform that action at this time.
0 commit comments