From a582b9c18dc1f5fad69f72f88f0fb87bc8b16859 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 2 Dec 2024 15:19:41 +0100 Subject: [PATCH] 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. --- .github/workflows/aws-lc.yml | 2 ++ .github/workflows/wolfssl.yml | 2 ++ 2 files changed, 4 insertions(+) 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' }} -- 2.47.3