We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd35f14 commit 9cc508bCopy full SHA for 9cc508b
.github/workflows/test.yml
@@ -62,13 +62,13 @@ jobs:
62
# Wait for validator to be ready
63
timeout 30 bash -c 'until solana cluster-version --url http://localhost:8899 >/dev/null 2>&1; do sleep 1; done'
64
65
- - name: Increase file descriptor limit
66
- run: |
67
- ulimit -n 1000000
68
-
69
- name: Start MagicBlock Ephemeral Validator
70
run: |
71
- RUST_LOG=info ephemeral-validator \
+ sudo prlimit --pid $$ --nofile=1048576:1048576
+ sudo sysctl fs.inotify.max_user_instances=1280
+ sudo sysctl fs.inotify.max_user_watches=655360
+
+ RUST_LOG=info ephemeral-validator \
72
--accounts-lifecycle ephemeral \
73
--remote-cluster development \
74
--remote-url http://127.0.0.1:8899 \
0 commit comments