From 431d91e65039c72d6873ff4a27404c8117ceab38 Mon Sep 17 00:00:00 2001 From: Zhoneym <140673973+Zhoneym@users.noreply.github.com> Date: Wed, 25 Sep 2024 18:13:06 +0800 Subject: [PATCH 1/2] Once again, use Clang to fix the core_stacktrace failure in the test suite. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Once again, use Clang to fix the core_stacktrace failure in the test suite.” --- tests/dump_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dump_core.c b/tests/dump_core.c index 82314e1..001de57 100644 --- a/tests/dump_core.c +++ b/tests/dump_core.c @@ -15,7 +15,7 @@ static char const *prefix = "/tmp/satyr.core"; -#if __clang__ +#if defined(__clang__) __attribute__((optnone)) #else __attribute__((optimize((0)))) From 85224d30ec419024f11f82dc6f9a126b7739dfe8 Mon Sep 17 00:00:00 2001 From: Zhoneym <140673973+Zhoneym@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:21:03 +0800 Subject: [PATCH 2/2] Update to actions/upload-artifact@v3 Update to actions/upload-artifact@v3 --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 0539956..69ad455 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -37,7 +37,7 @@ jobs: run: make check - name: Upload test log - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: testsuite.log path: tests/testsuite.log