From f50866e8c29722e0cccab3d74e3bca0a6763c1f5 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Thu, 7 Nov 2024 21:56:13 +0100 Subject: [PATCH] Revert "chore: CI: give Linux Debug unlimited test stack size (#5953)" This reverts commit 970dc6f7aac1ceb16c5324f0f8c0230dab879fd6. --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c94e76334064..a929c86f05fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -415,10 +415,6 @@ jobs: - name: Test id: test run: | - # give Linux debug unlimited stack, we're not interested in its specific stack usage - if [[ '${{ matrix.name }}' == 'Linux Debug' ]]; then - ulimit -s unlimited - fi time ctest --preset ${{ matrix.CMAKE_PRESET || 'release' }} --test-dir build/stage1 -j$NPROC --output-junit test-results.xml ${{ matrix.CTEST_OPTIONS }} if: (matrix.wasm || !matrix.cross) && needs.configure.outputs.check-level >= 1 - name: Test Summary