From 50282b0e04e53bb10a348ab68af93a7afc4b38c2 Mon Sep 17 00:00:00 2001 From: not-matthias Date: Mon, 22 Jun 2026 12:08:46 +0200 Subject: [PATCH 1/2] fix: compile instrument-hooks generated C with -std=c11 --- go-runner/overlay/instrument-hooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-runner/overlay/instrument-hooks.go b/go-runner/overlay/instrument-hooks.go index b9855fb..87d19ad 100644 --- a/go-runner/overlay/instrument-hooks.go +++ b/go-runner/overlay/instrument-hooks.go @@ -1,7 +1,7 @@ package testing /* -#cgo CFLAGS: -I@@INSTRUMENT_HOOKS_DIR@@/includes -Wno-format -Wno-format-security -Wno-incompatible-pointer-types +#cgo CFLAGS: -std=c11 -I@@INSTRUMENT_HOOKS_DIR@@/includes -Wno-format -Wno-format-security -Wno-incompatible-pointer-types #include "@@INSTRUMENT_HOOKS_DIR@@/dist/core.c" */ import "C" From c102c1a62be2cd2cfb80950cec536742acd081c0 Mon Sep 17 00:00:00 2001 From: not-matthias Date: Mon, 22 Jun 2026 14:01:20 +0200 Subject: [PATCH 2/2] ci: use latest runner-version for benchmarks --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc7fabb..9b9fec1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,8 +89,7 @@ jobs: run: cargo r --release --manifest-path ../go-runner/Cargo.toml -- test -bench=BenchmarkFibonacciDarwin example -benchtime=500ms working-directory: example mode: walltime - # TODO: Remove this once the runner has been released with the fix - runner-version: branch:cod-2762-samply-sigkills-dsymutil + runner-version: latest go-runner-benchmarks: runs-on: codspeed-macro