We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dcba4e commit a4b434fCopy full SHA for a4b434f
.github/workflows/main.yml
@@ -12,13 +12,14 @@ jobs:
12
- name: Debug
13
run: |
14
cat /proc/sys/fs/file-max
15
- sudo sysctl -w fs.file-max=500000
16
- cat /proc/sys/fs/file-max
17
- sudo prlimit --pid $$ --nofile=1048576:1048576
18
- sudo sysctl fs.inotify.max_user_instances=1280
19
- sudo sysctl fs.inotify.max_user_watches=655360
+ ulimit -Sn # Shows the soft limit
+ ulimit -Hn # Shows the hard limit
+ sudo ulimit -n 10485760
+ sudo prlimit --pid $$ --nofile=10485760:10485760
20
sudo sysctl -p
21
22
23
24
- name: Checkout
25
uses: actions/checkout@v4
0 commit comments