diff --git a/App.js b/App.js index fba6483..839c628 100644 --- a/App.js +++ b/App.js @@ -1 +1,2 @@ +console.log("trest") console.log("trest") \ No newline at end of file diff --git a/PerformicsDevOps.yml b/PerformicsDevOps.yml index 93f24d5..a92e87c 100644 --- a/PerformicsDevOps.yml +++ b/PerformicsDevOps.yml @@ -1,9 +1,11 @@ # Azure Pipelines — React Native (JS CI) # https://learn.microsoft.com/azure/devops/pipelines/yaml-schema # -# If jobs never leave "Queued" or use Microsoft-hosted agents instead of your machine: -# 1) Pipelines → select this pipeline → Edit → three dots → Triggers → YAML → path must be this file (or move/copy to azure-pipelines.yml and point the pipeline there). -# 2) Project Settings → Agent pools → PerformicsCICD → Security → grant this pipeline access (or "Grant access permission to all pipelines"). +# Same self-hosted pool as other repos — if this pipeline stays Queued or ignores your agent: +# 1) Pipelines → this pipeline → Edit → ⋯ → Triggers → YAML file path must be THIS file +# (repo root: /PerformicsDevOps.yml). Default lookup is only /azure-pipelines.yml. +# 2) Project Settings → Agent pools → PerformicsCICD → Security → grant this pipeline access +# (or enable "Grant access permission to all pipelines"). # # Run on every push directly to main (and when merging into main via PR). name: PerformicsDevOps-$(Date:yyyyMMdd)$(Rev:.r) @@ -21,13 +23,12 @@ pr: variables: NODE_VERSION: '22.x' -# Pool at pipeline scope so every job uses the self-hosted pool (matches Project Settings → Agent pools → PerformicsCICD). -pool: - name: PerformicsCICD - jobs: - job: BuildAndTest displayName: Performics DevOps Pipeline + # Self-hosted pool "PerformicsCICD" (same pattern as working Deeplink/azure-pipelines.yml). + pool: + name: PerformicsCICD steps: - checkout: self displayName: Checkout