Skip to content

Commit f3c4d12

Browse files
committed
Fixes
1 parent a6b0ab3 commit f3c4d12

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/actions/apt-x64/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ runs:
1414
apt-get install -y sudo
1515
fi
1616
17+
echo '* soft nofile 1048576' | sudo tee /etc/security/limits.conf
18+
echo '* hard nofile 1048576' | sudo tee /etc/security/limits.conf
19+
1720
sudo apt-get update -y | true
1821
sudo apt-get install -y \
1922
autoconf \

.github/nightly.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,17 @@ function (): iterable {
119119
$res = pcntl_wait($status);
120120
if ($res === -1) {
121121
printMutex("An error occurred while waiting with waitpid!");
122-
$finalStatus = 1;
122+
$finalStatus = $finalStatus ?: 1;
123123
return;
124124
}
125125
if (!isset($parentPids[$res])) {
126126
printMutex("Unknown PID $res returned!");
127-
$finalStatus = 1;
127+
$finalStatus = $finalStatus ?: 1;
128128
return;
129129
}
130130
unset($parentPids[$res]);
131131
if ($status !== 0) {
132+
printMutex("Child exited with status $status");
132133
$finalStatus = $status;
133134
}
134135
};
@@ -217,9 +218,13 @@ function (): iterable {
217218
);
218219
}
219220
}
221+
222+
printMutex("$dir: exiting with status $final");
220223
exit($final);
221224
}
222225

223226
$waitAll();
224227

228+
printMutex("All done!");
229+
225230
die($finalStatus);

0 commit comments

Comments
 (0)