Skip to content

Commit 98de50a

Browse files
committed
Cleanup
1 parent 372979f commit 98de50a

File tree

2 files changed

+5
-36
lines changed

2 files changed

+5
-36
lines changed

.github/nightly.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ function (): iterable {
131131
unset($parentPids[$res]);
132132
if (pcntl_wifexited($status)) {
133133
$status = pcntl_wexitstatus($status);
134-
printMutex("Child $desc exited with status $status");
134+
printMutex("Child task $desc exited with status $status");
135135
if ($status !== 0) {
136136
$finalStatus = $status;
137137
}
138138
} elseif (pcntl_wifstopped($status)) {
139139
$status = pcntl_wstopsig($status);
140-
printMutex("Child $desc stopped by signal $status");
140+
printMutex("Child task $desc stopped by signal $status");
141141
$finalStatus = 1;
142142
} elseif (pcntl_wifsignaled($status)) {
143143
$status = pcntl_wtermsig($status);
144-
printMutex("Child $desc terminated by signal $status");
144+
printMutex("Child task $desc terminated by signal $status");
145145
$finalStatus = 1;
146146
}
147147
};
@@ -157,7 +157,7 @@ function (): iterable {
157157
foreach ($repos as $dir => [$repo, $branch, $prepare, $command, $repeat]) {
158158
$pid = pcntl_fork();
159159
if ($pid) {
160-
$parentPids[$pid] = "Clone $dir";
160+
$parentPids[$pid] = "clone $dir";
161161
continue;
162162
}
163163

@@ -178,7 +178,7 @@ function (): iterable {
178178
foreach ($repos as $dir => [$repo, $branch, $prepare, $command, $repeat]) {
179179
$pid = pcntl_fork();
180180
if ($pid) {
181-
$parentPids[$pid] = "Test $dir";
181+
$parentPids[$pid] = "test $dir";
182182
if (count($parentPids) >= $parallel) {
183183
$waitOne();
184184
}

.github/workflows/push.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -123,37 +123,6 @@ jobs:
123123
- name: Setup
124124
if: ${{ !matrix.asan }}
125125
uses: ./.github/actions/setup-x64
126-
127-
- name: Enable Opcache and JIT
128-
run: |
129-
echo zend_extension=opcache.so > /etc/php.d/opcache.ini
130-
echo opcache.enable_cli=1 >> /etc/php.d/opcache.ini
131-
echo opcache.enable=1 >> /etc/php.d/opcache.ini
132-
echo opcache.protect_memory=1 >> /etc/php.d/opcache.ini
133-
echo opcache.jit=tracing >> /etc/php.d/opcache.ini
134-
echo opcache.jit_buffer_size=1G >> /etc/php.d/opcache.ini
135-
echo opcache.jit_max_root_traces=100000 >> /etc/php.d/opcache.ini
136-
echo opcache.jit_max_side_traces=100000 >> /etc/php.d/opcache.ini
137-
echo opcache.jit_max_exit_counters=100000 >> /etc/php.d/opcache.ini
138-
echo opcache.jit_hot_loop=1 >> /etc/php.d/opcache.ini
139-
echo opcache.jit_hot_func=1 >> /etc/php.d/opcache.ini
140-
echo opcache.jit_hot_return=1 >> /etc/php.d/opcache.ini
141-
echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
142-
echo opcache.jit_blacklist_root_trace=255 >> /etc/php.d/opcache.ini
143-
echo opcache.jit_blacklist_side_trace=255 >> /etc/php.d/opcache.ini
144-
echo opcache.file_update_protection=0 >> /etc/php.d/opcache.ini
145-
echo opcache.memory_consumption=256M >> /etc/php.d/opcache.ini
146-
echo opcache.interned_strings_buffer=64 >> /etc/php.d/opcache.ini
147-
echo opcache.max_accelerated_files=100000 >> /etc/php.d/opcache.ini
148-
echo memory_limit=-1 >> /etc/php.d/opcache.ini
149-
php -v
150-
151-
- name: Test multiple libraries and frameworks in parallel
152-
run: |
153-
sudo prlimit --pid $$ --nofile=1048576:1048576
154-
155-
php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
156-
157126
- name: Test
158127
if: matrix.asan == false
159128
uses: ./.github/actions/test-linux

0 commit comments

Comments
 (0)