We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d3300 commit 2192298Copy full SHA for 2192298
1 file changed
.github/workflows/ci_ubuntu.yml
@@ -26,9 +26,9 @@ jobs:
26
27
- name: Set Limit
28
run: |
29
- prlimit --pid $$ --nofile=1048576:1048576
30
- sysctl fs.inotify.max_user_instances=1280
31
- sysctl fs.inotify.max_user_watches=655360
+ prlimit --pid $$ --nofile=1048576:1048576|| echo "Failed to set nofile limit (non-fatal)"
+ sysctl fs.inotify.max_user_instances=1280 || true
+ sysctl fs.inotify.max_user_watches=655360 || true
32
- name: Clone Submodule
33
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
34
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
0 commit comments