We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b434f commit 338d3b1Copy full SHA for 338d3b1
.github/workflows/main.yml
@@ -14,9 +14,12 @@ jobs:
14
cat /proc/sys/fs/file-max
15
ulimit -Sn # Shows the soft limit
16
ulimit -Hn # Shows the hard limit
17
- sudo ulimit -n 10485760
18
- sudo prlimit --pid $$ --nofile=10485760:10485760
19
- sudo sysctl -p
+ sudo su
+ ulimit -n 10485760
+ ulimit -Hn 10485760
20
+ prlimit --pid $$ --nofile=10485760:10485760
21
+ exit
22
+ sysctl -p
23
24
25
0 commit comments