Skip to content

[Profiler] Bump to libunwind 1.8.3 #31909

[Profiler] Bump to libunwind 1.8.3

[Profiler] Bump to libunwind 1.8.3 #31909

name: Verify source generator changes have been persisted
on:
pull_request:
workflow_dispatch:
jobs:
verify_source_generators:
runs-on: windows-latest
timeout-minutes: 34 # max + 3*std over the last 3700 runs
permissions:
contents: read
steps:
- name: Support longpaths
run: git config --system core.longpaths true
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0
with:
global-json-file: global.json
- name: "Regenerating package versions"
run: .\tracer\build.ps1 Restore CompileManagedSrc
- name: "Verify no changes in generated files"
run: |
git diff --quiet -- .\tracer\src\Datadog.Trace\Generated .\tracer\src\Datadog.Tracer.Native\Generated .\tracer\build\supported_calltargets.g.json
if ($LASTEXITCODE -eq 1) {
git diff -- .\tracer\src\Datadog.Trace\Generated .\tracer\src\Datadog.Tracer.Native\Generated .\tracer\build\supported_calltargets.g.json
Write-Error "Found changes in Generated folder. Build the solution locally using Nuke and ensure you have committed all source generated files."
Exit 1
} else {
echo "No changes found to generated files"
}