From: William Lallemand Date: Mon, 2 Dec 2024 14:19:41 +0000 (+0100) Subject: CI: github: allow coredumps on aws-lc and wolfssl jobs X-Git-Tag: v3.2-dev1~59 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=a582b9c18dc1f5fad69f72f88f0fb87bc8b16859;p=haproxy.git CI: github: allow coredumps on aws-lc and wolfssl jobs The weekly aws-lc and wolfssl jobs lacks an `ulimit -c` call in order to allow to get the coredumps. --- diff --git a/.github/workflows/aws-lc.yml b/.github/workflows/aws-lc.yml index d55e8d106..1ef0ef279 100644 --- a/.github/workflows/aws-lc.yml +++ b/.github/workflows/aws-lc.yml @@ -57,6 +57,8 @@ jobs: # This is required for macOS which does not actually allow to increase # the '-n' soft limit to the hard limit, thus failing to run. ulimit -n 65536 + # allow to catch coredumps + ulimit -c unlimited make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel - name: Show VTest results if: ${{ failure() && steps.vtest.outcome == 'failure' }} diff --git a/.github/workflows/wolfssl.yml b/.github/workflows/wolfssl.yml index 35247c3e0..e29a5f7a9 100644 --- a/.github/workflows/wolfssl.yml +++ b/.github/workflows/wolfssl.yml @@ -57,6 +57,8 @@ jobs: # This is required for macOS which does not actually allow to increase # the '-n' soft limit to the hard limit, thus failing to run. ulimit -n 65536 + # allow to catch coredumps + ulimit -c unlimited make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel - name: Show VTest results if: ${{ failure() && steps.vtest.outcome == 'failure' }}