From 33659a6a0ea73c4eea3547bbf19da31882276c75 Mon Sep 17 00:00:00 2001 From: Pawel Pabich Date: Tue, 27 Jun 2017 13:23:51 +1000 Subject: [PATCH 1/3] Added internal exception handling to the list of ignored stack frames --- AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb b/AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb index 8964fe9..f277dc4 100644 --- a/AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb +++ b/AsyncStackTraceEx/AsyncStackTraceEx/AsyncStackTraceEx.vb @@ -48,6 +48,9 @@ Namespace Global If s = "System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()" Then Continue For If s = "System.Runtime.CompilerServices.TaskAwaiter.GetResult()" Then Continue For + ' Get rid of stack-frames that are part of the runtime exception handling machinery + If s = "System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()" Then Continue For + ' Get rid of stack-frames that are part of .NET Native machiner If s.Contains("!+0x") Then Continue For From fb1fd838ff8aa779859809a99503b2077ad52652 Mon Sep 17 00:00:00 2001 From: "cloudbees-platform[bot]" <138695131+cloudbees-platform[bot]@users.noreply.github.com> Date: Tue, 29 Apr 2025 01:42:32 +0000 Subject: [PATCH 2/3] test --- .cloudbees/workflows/my-workflow.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .cloudbees/workflows/my-workflow.yaml diff --git a/.cloudbees/workflows/my-workflow.yaml b/.cloudbees/workflows/my-workflow.yaml new file mode 100644 index 0000000..29e31c3 --- /dev/null +++ b/.cloudbees/workflows/my-workflow.yaml @@ -0,0 +1,17 @@ +apiVersion: automation.cloudbees.io/v1alpha1 +kind: workflow +name: My workflow + +on: + push: + branches: + - '**' + +jobs: + build: + steps: + - name: Say hello + uses: docker://golang:1.20.3-alpine3.17 + shell: sh + run: | + echo "hello world" From 064e6bcf682e2905d48ca8e9054dfc0a747c4d17 Mon Sep 17 00:00:00 2001 From: Pawel Pabich Date: Tue, 29 Apr 2025 11:43:05 +1000 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f77328a..0af4592 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ **Solution**: I'll write a small helper which adds those line numbers to exception stack-traces, without needing PDBs. - +Test # How it works