TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

How to set breakpoints in CI jobs

14 点作者 elischleifer将近 2 年前

4 条评论

kathlam将近 2 年前
How is this different from this: <a href="https:&#x2F;&#x2F;github.blog&#x2F;changelog&#x2F;2022-05-24-github-actions-re-run-jobs-with-debug-logging&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.blog&#x2F;changelog&#x2F;2022-05-24-github-actions-re-r...</a><p>Or <a href="https:&#x2F;&#x2F;github.com&#x2F;marketplace&#x2F;actions&#x2F;debugging-with-ssh">https:&#x2F;&#x2F;github.com&#x2F;marketplace&#x2F;actions&#x2F;debugging-with-ssh</a>
elischleifer将近 2 年前
Founder here. Debugging CI pipelines is a pain and it often feels like a slow, unproductive printf() debugging process. All of us who have gone through the tedious cycle of run-&gt;fail-&gt;log-&gt;fix-&gt;run-&gt;fail-&gt; can attest to the massive waste of time it creates.<p>To change this, we built Trunk&#x27;s CI Debugger. We initially built this for Trunk because we found that CI jobs were not stable and took multiple hours to track down the root cause of failure. The debugger gave our team a way to add conditional breakpoints, receive alerts on and debug our CI like you do your code.<p>You can see how this works for GitHub Action in our repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;trunk-io&#x2F;breakpoint">https:&#x2F;&#x2F;github.com&#x2F;trunk-io&#x2F;breakpoint</a>, but it works with any CI system you use - Jenkins, GitHub Actions, Buildkite, Circle CI.<p>To get started, check out our CI Debugger in the link above. We learned a ton building this tool, and I would love to hear your feedback and answer any questions you might have. Here&#x27;s to making the debugging process in CI systems as seamless as it should be.
dukedylan将近 2 年前
Looks cool, I just requested access. My friend is on their community Slack and says the folks at Trunk are super helpful.
jangofett27将近 2 年前
This would&#x27;ve saved me almost an hour yesterday alone. Looking forward to see how this tool matures