Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ jobs:
- name: Verify formatting
run: dotnet format whitespace CodeIndex.sln --verify-no-changes --no-restore --verbosity minimal

- name: Verify Release solution build
if: matrix.os == 'ubuntu-latest' && matrix.test-framework == 'net8.0'
run: dotnet build CodeIndex.sln --configuration Release --no-restore -p:UseSharedCompilation=false

- name: Verify developer task wrapper
if: matrix.os == 'ubuntu-latest' && matrix.test-framework == 'net8.0'
run: make lint
Expand Down
15 changes: 15 additions & 0 deletions changelog.d/unreleased/2791.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
category: internal
issues:
- 2791
affected:
- .github/workflows/dotnet.yml
---

## English

- **CI now guards the Release solution build used to catch AOT analyzer regressions (#2791)** — the ubuntu net8.0 lane runs the documented Release solution build command with shared compilation disabled, so IL3050 regressions in JSON serialization call sites fail during CI instead of surfacing later in pre-PR validation.

## 日本語

- **AOT analyzer 退行を検出する Release solution build を CI で検証するようにしました (#2791)** — ubuntu net8.0 lane で shared compilation を無効にしたドキュメント記載の Release solution build コマンドを実行し、JSON serialization call site の IL3050 退行が PR 前検証で後から見つかるのではなく CI 上で失敗するようにしました。
Loading