Skip to content

Fix runtime metrics memory_load calculation #8417

Fix runtime metrics memory_load calculation

Fix runtime metrics memory_load calculation #8417

name: Verify ultimate-pipeline.yml changes have been persisted
on:
pull_request:
workflow_dispatch:
jobs:
verify_solution_changes_are_persisted:
runs-on: windows-latest
permissions:
contents: read
steps:
- name: Support longpaths
run: git config --system core.longpaths true
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
global-json-file: global.json
- name: "Running GenerateUpdateGitHubPipelineStep"
run: .\tracer\build.ps1 GenerateUpdateGitHubPipelineStep
- name: "Verify no changes in generated templates"
run: |
git diff --quiet -- .\.azure-pipelines\steps\update-github-pipeline-status.yml
if ($LASTEXITCODE -eq 1) {
git diff
Write-Error "Found changes in generated template. Did you change the stages in ultimate-pipeline? Regenerate the template locally by running the target 'GenerateUpdateGitHubPipelineStep', and ensure the changed files are committed to git."
Exit 1
} else {
echo "No changes found to generated template"
}