From ad313b77850ff7d3d40cd3f11beeb22c083f357d Mon Sep 17 00:00:00 2001 From: Oussama Teffahi Date: Fri, 19 Apr 2024 15:18:18 +0200 Subject: [PATCH] Debug ulimit value on runner images --- .github/workflows/pre-release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 8b0f35e5cc..fa1bb1a972 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -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 @@ -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