Skip to content

Commit

Permalink
Debug ulimit value on runner images
Browse files Browse the repository at this point in the history
  • Loading branch information
oteffahi committed Apr 19, 2024
1 parent 662e8fd commit ad313b7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
image: ${{ matrix.image }}
options: --ulimit nofile=1000000:1000000
steps:
- name: Print ulimit for debugging
run: |
ulimit -Hn
ulimit -Sn
- name: Update and install packages
run: apt-get update && apt-get install -y curl git build-essential pkg-config libssl-dev

Expand Down Expand Up @@ -107,9 +112,14 @@ jobs:

doc:
name: Generate documentation
needs: checks
# needs: checks
runs-on: ubuntu-latest
steps:
- name: Print ulimit for debugging
run: |
ulimit -Hn
ulimit -Sn
- name: Clone this repository
uses: actions/checkout@v4

Expand Down

0 comments on commit ad313b7

Please sign in to comment.