Skip to content

Commit 1469dd9

Browse files
committed
Fixup
1 parent 4fdee6d commit 1469dd9

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ 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-
20-
ulimit -n
21-
ulimit -hn
22-
2317
sudo apt-get update -y | true
2418
sudo apt-get install -y \
2519
autoconf \

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,8 @@ jobs:
387387
- name: Test multiple libraries and frameworks in parallel
388388
if: matrix.branch.ref != 'PHP-8.0'
389389
run: |
390+
sudo prlimit --pid $$ --nofile=1048576:1048576
391+
390392
php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
391393
392394
- name: Test Psalm

.github/workflows/push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ jobs:
150150
151151
- name: Test multiple libraries and frameworks in parallel
152152
run: |
153+
sudo prlimit --pid $$ --nofile=1048576:1048576
154+
153155
php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
154156
155157
- name: Test

0 commit comments

Comments
 (0)