Skip to content

ci: add claude code workflows - #441

Closed
abmcar wants to merge 2 commits into
DTVMStack:mainfrom
abmcar:add-claude-github-actions-1775110579658
Closed

ci: add claude code workflows#441
abmcar wants to merge 2 commits into
DTVMStack:mainfrom
abmcar:add-claude-github-actions-1775110579658

Conversation

@abmcar

@abmcar abmcar commented Apr 2, 2026

Copy link
Copy Markdown
Contributor

1. Does this PR affect any open issues?(Y/N) and add issue references (e.g. "fix #123", "re #123".):

  • N
  • Y

2. What is the scope of this PR (e.g. component or file name):

3. Provide a description of the PR(e.g. more details, effects, motivations or doc link):

  • Affects user behaviors
  • Contains CI/CD configuration changes
  • Contains documentation changes
  • Contains experimental features
  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Other

4. Are there any breaking changes?(Y/N) and describe the breaking changes(e.g. more details, motivations or doc link):

  • N
  • Y

5. Are there test cases for these changes?(Y/N) select and add more details, references or doc links:

  • Unit test
  • Integration test
  • Benchmark (add benchmark stats below)
  • Manual test (add detailed scripts or steps below)
  • Other

6. Release note

None

Copilot AI review requested due to automatic review settings April 2, 2026 06:18

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds GitHub Actions workflows to integrate Anthropic Claude Code into the repo, enabling (1) on-demand runs triggered by @claude mentions on issues/PR discussions/reviews and (2) automatic PR code-review runs.

Changes:

  • Introduces a “Claude Code” workflow that runs on issue/PR comment and review events when @claude is present.
  • Introduces a “Claude Code Review” workflow that runs automatically on PR lifecycle events and invokes the code-review plugin.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.

File Description
.github/workflows/claude.yml Adds an event-driven workflow to run Claude Code when @claude is mentioned on issues/PR comments/reviews.
.github/workflows/claude-code-review.yml Adds an automatic PR workflow to run the Claude code-review plugin on PR updates.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +16 to +19
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))

Copilot AI Apr 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The job can be triggered by any user who can comment/open issues as long as they include @claude, but it uses a repository secret (CLAUDE_CODE_OAUTH_TOKEN). This allows untrusted users to consume the secret-backed Claude integration (and potentially exfiltrate repo context through the action) and incur cost. Restrict execution to trusted actors (e.g., github.event.comment.author_association / github.event.review.author_association in MEMBER|OWNER|COLLABORATOR, or an allowlist), and/or require a protected environment approval before running.

Suggested change
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
(github.event_name == 'issue_comment' &&
contains(github.event.comment.body, '@claude') &&
contains(fromJson('["MEMBER","OWNER","COLLABORATOR"]'), github.event.comment.author_association)
) ||
(github.event_name == 'pull_request_review_comment' &&
contains(github.event.comment.body, '@claude') &&
contains(fromJson('["MEMBER","OWNER","COLLABORATOR"]'), github.event.comment.author_association)
) ||
(github.event_name == 'pull_request_review' &&
contains(github.event.review.body, '@claude') &&
contains(fromJson('["MEMBER","OWNER","COLLABORATOR"]'), github.event.review.author_association)
) ||
(github.event_name == 'issues' &&
(contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')) &&
contains(fromJson('["MEMBER","OWNER","COLLABORATOR"]'), github.event.issue.author_association)
)

Copilot uses AI. Check for mistakes.
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1

Copilot AI Apr 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When triggered via issue_comment on a PR, actions/checkout will default to the repository default branch (the issue_comment event doesn’t set github.ref to the PR merge/head). That means Claude won’t see the PR’s code changes for the most common “@claude in PR discussion” use case. Consider resolving the PR number from the issue_comment payload and checking out the PR head/merge ref explicitly before running the action.

Suggested change
fetch-depth: 1
fetch-depth: 1
ref: ${{ github.event_name == 'issue_comment' && github.event.issue.pull_request && format('refs/pull/{0}/merge', github.event.issue.number) || github.ref }}

Copilot uses AI. Check for mistakes.
Comment on lines +34 to +41
- name: Run Claude Code Review
id: claude-review
uses: anthropics/claude-code-action@v1
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
plugin_marketplaces: 'https://github.com/anthropics/claude-code.git'
plugins: 'code-review@claude-code-plugins'
prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}'

Copilot AI Apr 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow references secrets.CLAUDE_CODE_OAUTH_TOKEN, so it will fail on repositories/branches where the secret isn’t configured, and it will not be available for pull requests from forks (GitHub does not pass secrets to forked PR workflows). To avoid noisy CI failures, add a job-level guard (e.g., only run when the secret is set and/or when head.repo.fork == false) or switch to a trusted event model appropriate for secrets.

Copilot uses AI. Check for mistakes.
Comment on lines +24 to +25
pull-requests: read
issues: read

Copilot AI Apr 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The job permissions are read-only (pull-requests: read, issues: read). If the Claude code-review plugin is expected to publish a PR review/comment back to GitHub, the workflow token won’t be able to create/update PR reviews or issue comments. Grant the minimal required write scopes (typically pull-requests: write and/or issues: write) or configure the action to use an explicit token with those scopes.

Suggested change
pull-requests: read
issues: read
pull-requests: write
issues: write

Copilot uses AI. Check for mistakes.
@github-actions

github-actions Bot commented Apr 2, 2026

Copy link
Copy Markdown

⚡ Performance Regression Check Results

✅ Performance Check Passed (interpreter)

Performance Benchmark Results (threshold: 25%)

Benchmark Baseline (us) Current (us) Change Status
total/main/blake2b_huff/8415nulls 1.51 1.51 +0.4% PASS
total/main/blake2b_huff/empty 0.02 0.02 +0.2% PASS
total/main/blake2b_shifts/8415nulls 11.90 11.62 -2.3% PASS
total/main/sha1_divs/5311 5.05 5.06 +0.2% PASS
total/main/sha1_divs/empty 0.06 0.06 +1.1% PASS
total/main/sha1_shifts/5311 2.92 2.93 +0.2% PASS
total/main/sha1_shifts/empty 0.04 0.04 -1.5% PASS
total/main/snailtracer/benchmark 52.67 52.69 +0.0% PASS
total/main/structarray_alloc/nfts_rank 0.97 0.97 -0.0% PASS
total/main/swap_math/insufficient_liquidity 0.00 0.00 -0.7% PASS
total/main/swap_math/received 0.00 0.00 -0.9% PASS
total/main/swap_math/spent 0.00 0.00 -0.9% PASS
total/main/weierstrudel/1 0.28 0.28 +0.1% PASS
total/main/weierstrudel/15 3.13 3.13 +0.1% PASS
total/micro/JUMPDEST_n0/empty 1.31 1.84 +40.1% PASS
total/micro/jump_around/empty 0.09 0.09 +3.5% PASS
total/micro/loop_with_many_jumpdests/empty 23.97 23.36 -2.6% PASS
total/micro/memory_grow_mload/by1 0.10 0.09 -4.3% PASS
total/micro/memory_grow_mload/by16 0.10 0.10 +3.5% PASS
total/micro/memory_grow_mload/by32 0.11 0.11 +1.6% PASS
total/micro/memory_grow_mload/nogrow 0.09 0.09 -9.5% PASS
total/micro/memory_grow_mstore/by1 0.09 0.10 +7.8% PASS
total/micro/memory_grow_mstore/by16 0.10 0.10 -0.1% PASS
total/micro/memory_grow_mstore/by32 0.12 0.12 +0.2% PASS
total/micro/memory_grow_mstore/nogrow 0.09 0.10 +7.8% PASS
total/micro/signextend/one 0.23 0.23 -0.1% PASS
total/micro/signextend/zero 0.23 0.23 -0.1% PASS
total/synth/ADD/b0 2.00 2.00 +0.0% PASS
total/synth/ADD/b1 2.01 2.00 -0.4% PASS
total/synth/ADDRESS/a0 4.75 4.75 +0.1% PASS
total/synth/ADDRESS/a1 5.33 5.30 -0.6% PASS
total/synth/AND/b0 1.71 1.71 -0.1% PASS
total/synth/AND/b1 1.72 1.72 -0.2% PASS
total/synth/BYTE/b0 6.12 6.12 +0.0% PASS
total/synth/BYTE/b1 4.78 4.76 -0.3% PASS
total/synth/CALLDATASIZE/a0 3.58 3.58 -0.1% PASS
total/synth/CALLDATASIZE/a1 3.62 3.59 -0.7% PASS
total/synth/CALLER/a0 4.74 4.73 -0.1% PASS
total/synth/CALLER/a1 5.33 5.30 -0.6% PASS
total/synth/CALLVALUE/a0 3.76 3.76 -0.0% PASS
total/synth/CALLVALUE/a1 3.77 3.76 -0.4% PASS
total/synth/CODESIZE/a0 3.99 3.99 -0.0% PASS
total/synth/CODESIZE/a1 4.02 4.00 -0.5% PASS
total/synth/DUP1/d0 1.06 1.22 +15.1% PASS
total/synth/DUP1/d1 1.40 1.40 -0.2% PASS
total/synth/DUP10/d0 1.07 1.31 +22.3% PASS
total/synth/DUP10/d1 1.40 1.39 -0.2% PASS
total/synth/DUP11/d0 1.30 1.31 +0.3% PASS
total/synth/DUP11/d1 1.16 1.39 +19.7% PASS
total/synth/DUP12/d0 1.08 1.29 +19.6% PASS
total/synth/DUP12/d1 1.40 1.39 -0.2% PASS
total/synth/DUP13/d0 1.07 1.07 +0.0% PASS
total/synth/DUP13/d1 1.40 1.40 -0.1% PASS
total/synth/DUP14/d0 1.06 1.30 +22.3% PASS
total/synth/DUP14/d1 1.40 1.39 -0.2% PASS
total/synth/DUP15/d0 1.29 1.30 +1.3% PASS
total/synth/DUP15/d1 1.40 1.39 -0.1% PASS
total/synth/DUP16/d0 1.07 1.30 +21.6% PASS
total/synth/DUP16/d1 1.40 1.40 -0.0% PASS
total/synth/DUP2/d0 1.00 1.22 +22.6% PASS
total/synth/DUP2/d1 1.40 1.39 -0.1% PASS
total/synth/DUP3/d0 1.06 1.30 +22.6% PASS
total/synth/DUP3/d1 1.40 1.15 -17.4% PASS
total/synth/DUP4/d0 1.02 1.30 +27.2% PASS
total/synth/DUP4/d1 1.40 1.39 -0.2% PASS
total/synth/DUP5/d0 1.22 1.30 +6.3% PASS
total/synth/DUP5/d1 1.40 1.15 -17.4% PASS
total/synth/DUP6/d0 1.07 1.31 +22.1% PASS
total/synth/DUP6/d1 1.40 1.39 -0.2% PASS
total/synth/DUP7/d0 1.07 1.29 +20.3% PASS
total/synth/DUP7/d1 1.40 1.15 -17.4% PASS
total/synth/DUP8/d0 1.07 1.31 +22.3% PASS
total/synth/DUP8/d1 1.16 1.39 +20.6% PASS
total/synth/DUP9/d0 1.07 1.31 +22.0% PASS
total/synth/DUP9/d1 1.16 1.39 +20.4% PASS
total/synth/EQ/b0 2.76 2.76 +0.0% PASS
total/synth/EQ/b1 1.34 1.34 -0.0% PASS
total/synth/GAS/a0 3.83 3.79 -0.9% PASS
total/synth/GAS/a1 3.87 3.90 +0.9% PASS
total/synth/GT/b0 2.61 2.61 +0.0% PASS
total/synth/GT/b1 1.57 1.56 -0.3% PASS
total/synth/ISZERO/u0 1.15 1.15 -0.1% PASS
total/synth/JUMPDEST/n0 1.79 1.79 +0.0% PASS
total/synth/LT/b0 2.62 2.62 -0.1% PASS
total/synth/LT/b1 1.56 1.56 -0.3% PASS
total/synth/MSIZE/a0 4.26 4.26 -0.0% PASS
total/synth/MSIZE/a1 4.83 4.80 -0.6% PASS
total/synth/MUL/b0 5.30 5.30 -0.0% PASS
total/synth/MUL/b1 5.39 5.38 -0.2% PASS
total/synth/NOT/u0 1.83 1.83 -0.2% PASS
total/synth/OR/b0 1.65 1.64 -0.4% PASS
total/synth/OR/b1 1.72 1.71 -0.3% PASS
total/synth/PC/a0 3.58 3.58 -0.1% PASS
total/synth/PC/a1 3.62 3.59 -0.8% PASS
total/synth/PUSH1/p0 0.90 1.07 +18.0% PASS
total/synth/PUSH1/p1 1.38 1.39 +0.7% PASS
total/synth/PUSH10/p0 1.15 1.10 -4.4% PASS
total/synth/PUSH10/p1 1.44 1.41 -2.0% PASS
total/synth/PUSH11/p0 1.12 1.11 -1.1% PASS
total/synth/PUSH11/p1 1.43 1.40 -1.9% PASS
total/synth/PUSH12/p0 1.15 1.13 -2.0% PASS
total/synth/PUSH12/p1 1.41 1.40 -1.0% PASS
total/synth/PUSH13/p0 1.07 1.10 +3.5% PASS
total/synth/PUSH13/p1 1.40 1.41 +1.1% PASS
total/synth/PUSH14/p0 1.08 1.14 +5.5% PASS
total/synth/PUSH14/p1 1.44 1.41 -2.7% PASS
total/synth/PUSH15/p0 1.15 1.12 -2.5% PASS
total/synth/PUSH15/p1 1.53 1.53 -0.0% PASS
total/synth/PUSH16/p0 0.90 1.11 +23.8% PASS
total/synth/PUSH16/p1 1.41 1.41 -0.1% PASS
total/synth/PUSH17/p0 1.07 1.11 +4.3% PASS
total/synth/PUSH17/p1 1.43 1.44 +1.3% PASS
total/synth/PUSH18/p0 1.15 1.11 -3.1% PASS
total/synth/PUSH18/p1 1.41 1.42 +0.5% PASS
total/synth/PUSH19/p0 1.07 1.13 +5.6% PASS
total/synth/PUSH19/p1 1.43 1.41 -1.3% PASS
total/synth/PUSH2/p0 0.83 1.16 +39.8% PASS
total/synth/PUSH2/p1 1.40 1.38 -1.6% PASS
total/synth/PUSH20/p0 1.07 1.07 +0.4% PASS
total/synth/PUSH20/p1 1.45 1.42 -2.1% PASS
total/synth/PUSH21/p0 0.90 1.11 +23.9% PASS
total/synth/PUSH21/p1 1.42 1.41 -0.3% PASS
total/synth/PUSH22/p0 1.15 1.11 -3.1% PASS
total/synth/PUSH22/p1 1.44 1.43 -0.4% PASS
total/synth/PUSH23/p0 1.15 1.08 -5.7% PASS
total/synth/PUSH23/p1 1.45 1.42 -1.9% PASS
total/synth/PUSH24/p0 1.07 1.05 -1.6% PASS
total/synth/PUSH24/p1 1.42 1.42 -0.3% PASS
total/synth/PUSH25/p0 1.14 1.13 -1.5% PASS
total/synth/PUSH25/p1 1.43 1.42 -0.8% PASS
total/synth/PUSH26/p0 1.07 1.12 +5.2% PASS
total/synth/PUSH26/p1 1.43 1.44 +0.2% PASS
total/synth/PUSH27/p0 1.13 1.13 -0.6% PASS
total/synth/PUSH27/p1 1.46 1.42 -2.4% PASS
total/synth/PUSH28/p0 1.07 1.12 +4.6% PASS
total/synth/PUSH28/p1 1.43 1.41 -1.2% PASS
total/synth/PUSH29/p0 1.09 1.13 +3.5% PASS
total/synth/PUSH29/p1 1.43 1.48 +3.7% PASS
total/synth/PUSH3/p0 1.15 1.11 -3.4% PASS
total/synth/PUSH3/p1 1.39 1.40 +0.7% PASS
total/synth/PUSH30/p0 1.09 1.17 +7.1% PASS
total/synth/PUSH30/p1 1.46 1.42 -2.7% PASS
total/synth/PUSH31/p0 1.14 1.12 -1.9% PASS
total/synth/PUSH31/p1 1.60 1.56 -1.9% PASS
total/synth/PUSH32/p0 1.15 1.13 -1.3% PASS
total/synth/PUSH32/p1 1.46 1.42 -2.8% PASS
total/synth/PUSH4/p0 0.83 1.06 +28.3% PASS
total/synth/PUSH4/p1 1.40 1.41 +1.0% PASS
total/synth/PUSH5/p0 0.91 1.12 +23.8% PASS
total/synth/PUSH5/p1 1.42 1.40 -1.5% PASS
total/synth/PUSH6/p0 0.91 1.11 +22.1% PASS
total/synth/PUSH6/p1 1.43 1.40 -2.2% PASS
total/synth/PUSH7/p0 1.07 1.14 +7.0% PASS
total/synth/PUSH7/p1 1.42 1.41 -1.1% PASS
total/synth/PUSH8/p0 1.07 1.12 +5.5% PASS
total/synth/PUSH8/p1 1.43 1.41 -1.4% PASS
total/synth/PUSH9/p0 1.07 1.12 +4.6% PASS
total/synth/PUSH9/p1 1.41 1.40 -0.8% PASS
total/synth/RETURNDATASIZE/a0 3.99 3.99 -0.1% PASS
total/synth/RETURNDATASIZE/a1 4.02 3.99 -0.5% PASS
total/synth/SAR/b0 3.79 3.79 +0.0% PASS
total/synth/SAR/b1 4.35 4.31 -0.9% PASS
total/synth/SGT/b0 2.61 2.61 +0.1% PASS
total/synth/SGT/b1 1.56 1.56 -0.1% PASS
total/synth/SHL/b0 3.04 3.03 -0.2% PASS
total/synth/SHL/b1 1.61 1.64 +2.0% PASS
total/synth/SHR/b0 2.93 2.93 -0.0% PASS
total/synth/SHR/b1 1.64 1.61 -1.5% PASS
total/synth/SIGNEXTEND/b0 3.34 3.58 +7.2% PASS
total/synth/SIGNEXTEND/b1 3.76 3.73 -0.6% PASS
total/synth/SLT/b0 2.62 2.61 -0.0% PASS
total/synth/SLT/b1 1.56 1.56 -0.1% PASS
total/synth/SUB/b0 1.98 1.98 -0.0% PASS
total/synth/SUB/b1 1.98 1.98 -0.2% PASS
total/synth/SWAP1/s0 1.49 1.49 -0.1% PASS
total/synth/SWAP10/s0 1.50 1.50 +0.1% PASS
total/synth/SWAP11/s0 1.50 1.50 +0.0% PASS
total/synth/SWAP12/s0 1.50 1.50 -0.1% PASS
total/synth/SWAP13/s0 1.51 1.50 -0.0% PASS
total/synth/SWAP14/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP15/s0 1.51 1.51 +0.2% PASS
total/synth/SWAP16/s0 1.51 1.51 -0.0% PASS
total/synth/SWAP2/s0 1.49 1.49 +0.1% PASS
total/synth/SWAP3/s0 1.49 1.49 +0.2% PASS
total/synth/SWAP4/s0 1.49 1.49 -0.0% PASS
total/synth/SWAP5/s0 1.50 1.50 +0.1% PASS
total/synth/SWAP6/s0 1.50 1.50 +0.1% PASS
total/synth/SWAP7/s0 1.50 1.50 -0.1% PASS
total/synth/SWAP8/s0 1.50 1.50 +0.0% PASS
total/synth/SWAP9/s0 1.50 1.50 +0.1% PASS
total/synth/XOR/b0 1.55 1.55 -0.0% PASS
total/synth/XOR/b1 1.56 1.56 +0.0% PASS
total/synth/loop_v1 4.45 4.43 -0.6% PASS
total/synth/loop_v2 4.43 4.44 +0.1% PASS

Summary: 194 benchmarks, 0 regressions


✅ Performance Check Passed (multipass)

Performance Benchmark Results (threshold: 25%)

Benchmark Baseline (us) Current (us) Change Status
total/main/blake2b_huff/8415nulls 1.56 1.56 +0.3% PASS
total/main/blake2b_huff/empty 0.07 0.07 +0.5% PASS
total/main/blake2b_shifts/8415nulls 5.18 5.17 -0.1% PASS
total/main/sha1_divs/5311 1.90 1.90 -0.1% PASS
total/main/sha1_divs/empty 0.03 0.03 -0.2% PASS
total/main/sha1_shifts/5311 2.76 2.76 -0.1% PASS
total/main/sha1_shifts/empty 0.04 0.04 +0.1% PASS
total/main/snailtracer/benchmark 53.65 53.18 -0.9% PASS
total/main/structarray_alloc/nfts_rank 0.29 0.29 +0.0% PASS
total/main/swap_math/insufficient_liquidity 0.02 0.02 -0.1% PASS
total/main/swap_math/received 0.02 0.02 -0.3% PASS
total/main/swap_math/spent 0.02 0.02 -0.7% PASS
total/main/weierstrudel/1 0.35 0.34 -0.5% PASS
total/main/weierstrudel/15 3.21 3.20 -0.2% PASS
total/micro/JUMPDEST_n0/empty 0.13 0.13 -0.2% PASS
total/micro/jump_around/empty 0.63 0.62 -0.3% PASS
total/micro/loop_with_many_jumpdests/empty 1.95 1.95 +0.3% PASS
total/micro/memory_grow_mload/by1 0.18 0.18 +1.1% PASS
total/micro/memory_grow_mload/by16 0.18 0.18 -0.8% PASS
total/micro/memory_grow_mload/by32 0.20 0.20 -0.9% PASS
total/micro/memory_grow_mload/nogrow 0.17 0.17 +1.2% PASS
total/micro/memory_grow_mstore/by1 0.18 0.18 +1.6% PASS
total/micro/memory_grow_mstore/by16 0.19 0.19 +0.2% PASS
total/micro/memory_grow_mstore/by32 0.20 0.20 +0.2% PASS
total/micro/memory_grow_mstore/nogrow 0.18 0.18 +0.5% PASS
total/micro/signextend/one 0.34 0.34 +1.3% PASS
total/micro/signextend/zero 0.34 0.34 +0.4% PASS
total/synth/ADD/b0 0.01 0.01 -0.5% PASS
total/synth/ADD/b1 0.01 0.01 +0.0% PASS
total/synth/ADDRESS/a0 0.16 0.16 -0.2% PASS
total/synth/ADDRESS/a1 0.16 0.16 -0.0% PASS
total/synth/AND/b0 0.01 0.01 +0.2% PASS
total/synth/AND/b1 0.01 0.01 -0.0% PASS
total/synth/BYTE/b0 1.95 1.95 -0.0% PASS
total/synth/BYTE/b1 2.34 2.35 +0.3% PASS
total/synth/CALLDATASIZE/a0 0.08 0.08 +2.6% PASS
total/synth/CALLDATASIZE/a1 0.08 0.08 +2.1% PASS
total/synth/CALLER/a0 0.16 0.16 -0.0% PASS
total/synth/CALLER/a1 0.16 0.16 -0.0% PASS
total/synth/CALLVALUE/a0 0.28 0.28 +0.0% PASS
total/synth/CALLVALUE/a1 0.28 0.28 -0.2% PASS
total/synth/CODESIZE/a0 0.08 0.08 -0.0% PASS
total/synth/CODESIZE/a1 0.08 0.08 -0.0% PASS
total/synth/DUP1/d0 0.01 0.01 +0.5% PASS
total/synth/DUP1/d1 0.01 0.01 -0.1% PASS
total/synth/DUP10/d0 0.01 0.01 -0.1% PASS
total/synth/DUP10/d1 0.01 0.01 -0.0% PASS
total/synth/DUP11/d0 0.01 0.01 +0.1% PASS
total/synth/DUP11/d1 0.01 0.01 +0.0% PASS
total/synth/DUP12/d0 0.01 0.01 -0.1% PASS
total/synth/DUP12/d1 0.01 0.01 -0.3% PASS
total/synth/DUP13/d0 0.01 0.01 -0.2% PASS
total/synth/DUP13/d1 0.01 0.01 -0.0% PASS
total/synth/DUP14/d0 0.01 0.01 -0.1% PASS
total/synth/DUP14/d1 0.01 0.01 +0.2% PASS
total/synth/DUP15/d0 0.01 0.01 -0.1% PASS
total/synth/DUP15/d1 0.01 0.01 +0.0% PASS
total/synth/DUP16/d0 0.01 0.01 +0.0% PASS
total/synth/DUP16/d1 0.01 0.01 -0.1% PASS
total/synth/DUP2/d0 0.01 0.01 -0.1% PASS
total/synth/DUP2/d1 0.01 0.01 +0.0% PASS
total/synth/DUP3/d0 0.01 0.01 -0.1% PASS
total/synth/DUP3/d1 0.01 0.01 +0.0% PASS
total/synth/DUP4/d0 0.01 0.01 -0.1% PASS
total/synth/DUP4/d1 0.01 0.01 +0.0% PASS
total/synth/DUP5/d0 0.01 0.01 -0.1% PASS
total/synth/DUP5/d1 0.01 0.01 +0.0% PASS
total/synth/DUP6/d0 0.01 0.01 -0.0% PASS
total/synth/DUP6/d1 0.01 0.01 -0.0% PASS
total/synth/DUP7/d0 0.01 0.01 -0.1% PASS
total/synth/DUP7/d1 0.01 0.01 -0.0% PASS
total/synth/DUP8/d0 0.01 0.01 -0.0% PASS
total/synth/DUP8/d1 0.01 0.01 -0.0% PASS
total/synth/DUP9/d0 0.01 0.01 -0.1% PASS
total/synth/DUP9/d1 0.01 0.01 -0.1% PASS
total/synth/EQ/b0 0.01 0.01 +0.1% PASS
total/synth/EQ/b1 0.01 0.01 -0.5% PASS
total/synth/GAS/a0 0.80 0.80 +0.0% PASS
total/synth/GAS/a1 0.77 0.76 -0.1% PASS
total/synth/GT/b0 0.01 0.01 +0.1% PASS
total/synth/GT/b1 0.01 0.01 +0.1% PASS
total/synth/ISZERO/u0 0.01 0.01 -0.0% PASS
total/synth/JUMPDEST/n0 0.13 0.13 +0.3% PASS
total/synth/LT/b0 0.01 0.01 +0.3% PASS
total/synth/LT/b1 0.01 0.01 +0.0% PASS
total/synth/MSIZE/a0 0.01 0.01 -0.0% PASS
total/synth/MSIZE/a1 0.01 0.01 -0.0% PASS
total/synth/MUL/b0 0.01 0.01 +0.1% PASS
total/synth/MUL/b1 0.01 0.01 -0.0% PASS
total/synth/NOT/u0 0.01 0.01 +0.0% PASS
total/synth/OR/b0 0.01 0.01 +0.3% PASS
total/synth/OR/b1 0.01 0.01 +0.0% PASS
total/synth/PC/a0 0.01 0.01 +0.3% PASS
total/synth/PC/a1 0.01 0.01 +0.0% PASS
total/synth/PUSH1/p0 0.02 0.02 +5.0% PASS
total/synth/PUSH1/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH10/p0 0.02 0.02 +2.9% PASS
total/synth/PUSH10/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH11/p0 0.02 0.02 +1.4% PASS
total/synth/PUSH11/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH12/p0 0.02 0.02 +3.3% PASS
total/synth/PUSH12/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH13/p0 0.02 0.02 +3.3% PASS
total/synth/PUSH13/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH14/p0 0.02 0.02 +3.9% PASS
total/synth/PUSH14/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH15/p0 0.02 0.02 +2.7% PASS
total/synth/PUSH15/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH16/p0 0.02 0.02 +2.7% PASS
total/synth/PUSH16/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH17/p0 0.02 0.02 +2.4% PASS
total/synth/PUSH17/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH18/p0 0.02 0.02 +2.1% PASS
total/synth/PUSH18/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH19/p0 0.02 0.02 +3.7% PASS
total/synth/PUSH19/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH2/p0 0.02 0.02 +4.7% PASS
total/synth/PUSH2/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH20/p0 0.02 0.02 +3.0% PASS
total/synth/PUSH20/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH21/p0 0.02 0.02 +1.8% PASS
total/synth/PUSH21/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH22/p0 1.16 1.16 -0.0% PASS
total/synth/PUSH22/p1 1.45 1.43 -0.9% PASS
total/synth/PUSH23/p0 1.16 1.16 -0.1% PASS
total/synth/PUSH23/p1 1.44 1.44 -0.1% PASS
total/synth/PUSH24/p0 1.16 1.16 -0.1% PASS
total/synth/PUSH24/p1 1.43 1.45 +1.1% PASS
total/synth/PUSH25/p0 1.16 1.16 -0.0% PASS
total/synth/PUSH25/p1 1.43 1.47 +2.4% PASS
total/synth/PUSH26/p0 1.00 0.84 -15.8% PASS
total/synth/PUSH26/p1 1.44 1.46 +1.2% PASS
total/synth/PUSH27/p0 1.16 1.16 -0.1% PASS
total/synth/PUSH27/p1 1.44 1.44 -0.0% PASS
total/synth/PUSH28/p0 1.16 1.16 -0.0% PASS
total/synth/PUSH28/p1 1.44 1.45 +0.7% PASS
total/synth/PUSH29/p0 1.16 1.16 +0.0% PASS
total/synth/PUSH29/p1 1.47 1.44 -2.0% PASS
total/synth/PUSH3/p0 0.02 0.02 +2.9% PASS
total/synth/PUSH3/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH30/p0 1.18 1.12 -4.9% PASS
total/synth/PUSH30/p1 1.45 1.45 +0.4% PASS
total/synth/PUSH31/p0 1.16 1.16 +0.0% PASS
total/synth/PUSH31/p1 1.59 1.56 -1.7% PASS
total/synth/PUSH32/p0 1.16 0.92 -20.6% PASS
total/synth/PUSH32/p1 1.49 1.46 -2.2% PASS
total/synth/PUSH4/p0 0.02 0.02 +3.7% PASS
total/synth/PUSH4/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH5/p0 0.02 0.02 +3.9% PASS
total/synth/PUSH5/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH6/p0 0.02 0.02 +3.9% PASS
total/synth/PUSH6/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH7/p0 0.02 0.02 +3.9% PASS
total/synth/PUSH7/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH8/p0 0.02 0.02 +4.8% PASS
total/synth/PUSH8/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH9/p0 0.02 0.02 +3.3% PASS
total/synth/PUSH9/p1 0.01 0.01 +0.0% PASS
total/synth/RETURNDATASIZE/a0 0.53 0.53 +0.0% PASS
total/synth/RETURNDATASIZE/a1 0.49 0.49 -0.0% PASS
total/synth/SAR/b0 3.80 3.80 +0.0% PASS
total/synth/SAR/b1 4.30 4.34 +0.9% PASS
total/synth/SGT/b0 0.01 0.01 -0.8% PASS
total/synth/SGT/b1 0.01 0.01 -0.1% PASS
total/synth/SHL/b0 3.05 3.05 +0.0% PASS
total/synth/SHL/b1 1.64 1.62 -1.3% PASS
total/synth/SHR/b0 2.94 2.94 -0.0% PASS
total/synth/SHR/b1 1.63 1.62 -0.6% PASS
total/synth/SIGNEXTEND/b0 3.35 3.35 +0.0% PASS
total/synth/SIGNEXTEND/b1 3.48 3.51 +0.8% PASS
total/synth/SLT/b0 0.01 0.01 -0.8% PASS
total/synth/SLT/b1 0.01 0.01 -0.0% PASS
total/synth/SUB/b0 0.01 0.01 +0.4% PASS
total/synth/SUB/b1 0.01 0.01 +0.0% PASS
total/synth/SWAP1/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP10/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP11/s0 0.01 0.01 -0.2% PASS
total/synth/SWAP12/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP13/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP14/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP15/s0 0.01 0.01 -0.2% PASS
total/synth/SWAP16/s0 0.01 0.01 -0.2% PASS
total/synth/SWAP2/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP3/s0 0.01 0.01 -0.2% PASS
total/synth/SWAP4/s0 0.01 0.01 -0.2% PASS
total/synth/SWAP5/s0 0.01 0.01 +0.1% PASS
total/synth/SWAP6/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP7/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP8/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP9/s0 0.01 0.01 -0.1% PASS
total/synth/XOR/b0 0.01 0.01 +0.1% PASS
total/synth/XOR/b1 0.01 0.01 -0.1% PASS
total/synth/loop_v1 1.45 1.45 +0.1% PASS
total/synth/loop_v2 1.37 1.37 +0.3% PASS

Summary: 194 benchmarks, 0 regressions


@abmcar abmcar closed this Apr 2, 2026
@abmcar
abmcar deleted the add-claude-github-actions-1775110579658 branch April 8, 2026 11:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants