Skip to content

Commit

Permalink
try set limits in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
iwilltry42 committed Aug 26, 2022
1 parent e238500 commit efac0d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
run: make test
- name: Run E2E Tests
timeout-minutes: 20
run: make e2e -e E2E_LOG_LEVEL=trace
run: |
sudo prlimit --pid $$ --nofile=1048576:1048576
sudo sysctl fs.inotify.max_user_instances=1280
sudo sysctl fs.inotify.max_user_watches=655360
make e2e -e E2E_LOG_LEVEL=trace
# Builds
- name: Test Platform Builds
run: make build-cross
Expand Down

0 comments on commit efac0d7

Please sign in to comment.