diff --git a/PerformicsDevOps.yml b/PerformicsDevOps.yml index 922f4f9..93f24d5 100644 --- a/PerformicsDevOps.yml +++ b/PerformicsDevOps.yml @@ -1,7 +1,13 @@ # 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"). +# # Run on every push directly to main (and when merging into main via PR). +name: PerformicsDevOps-$(Date:yyyyMMdd)$(Rev:.r) + trigger: branches: include: @@ -15,12 +21,13 @@ 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" (agent "myagent" listens via ./run.sh). - pool: - name: PerformicsCICD steps: - checkout: self displayName: Checkout diff --git a/PerformicsSrc/src/screens/WindowIR.js b/PerformicsSrc/src/screens/WindowIR.js index 6480294..74b0d36 100644 --- a/PerformicsSrc/src/screens/WindowIR.js +++ b/PerformicsSrc/src/screens/WindowIR.js @@ -134,6 +134,7 @@ function WindowIR(props) { useEffect(() => { + console.log("window IR page init") console.log("window IR page init") let params = props.route.params ? props.route.params : {}; let storeData1 = params.storeData || {};