File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ function (): iterable {
133
133
$ pid = pcntl_fork ();
134
134
if ($ pid ) {
135
135
$ parentPids [$ pid ] = true ;
136
- if (count ($ parentPids ) > $ parallel ) {
136
+ if (count ($ parentPids ) >= $ parallel ) {
137
137
$ waitOne ();
138
138
}
139
139
continue ;
@@ -171,7 +171,7 @@ function (): iterable {
171
171
["pipe " , "r " ],
172
172
["file " , sys_get_temp_dir ()."/out_ {$ dir }_ $ idx.txt " , "a " ],
173
173
["file " , sys_get_temp_dir ()."/out_ {$ dir }_ $ idx.txt " , "a " ]
174
- ], $ pipes );
174
+ ], $ pipes, sys_get_temp_dir (). " / $ dir " );
175
175
if ($ p === false ) {
176
176
printMutex ("Failure starting $ cmdStr " );
177
177
exit (1 );
Original file line number Diff line number Diff line change @@ -123,6 +123,15 @@ jobs:
123
123
- name : Setup
124
124
if : ${{ !matrix.asan }}
125
125
uses : ./.github/actions/setup-x64
126
+
127
+ - name : Test multiple libraries and frameworks in parallel
128
+ run : |
129
+ export ASAN_OPTIONS=exitcode=139
130
+ export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
131
+ export PHPSECLIB_ALLOW_JIT=1
132
+
133
+ php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
134
+
126
135
- name : Test
127
136
if : matrix.asan == false
128
137
uses : ./.github/actions/test-linux
You can’t perform that action at this time.
0 commit comments