From e0efedc07d41b709ad2411406b8283d35f265bbc Mon Sep 17 00:00:00 2001 From: Michael Mainer <8527305+MIchaelMainer@users.noreply.github.com> Date: Fri, 6 Feb 2026 09:52:54 -0800 Subject: [PATCH 1/3] ci: disable blocking stage - svc cxn is invalid --- azure-pipelines/publishSamples.yml | 70 +++++++++++++++--------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/azure-pipelines/publishSamples.yml b/azure-pipelines/publishSamples.yml index 15e33c39..fb79f562 100644 --- a/azure-pipelines/publishSamples.yml +++ b/azure-pipelines/publishSamples.yml @@ -53,42 +53,42 @@ extends: **\sample-queries\** TargetFolder: '$(Build.ArtifactStagingDirectory)' - - stage: DeployStaging - # condition: and(contains(variables['Build.SourceBranchName'], 'dev'), succeeded()) - condition: false # disable this stage - dependsOn: CopyArtifactFiles - jobs: - - deployment: staging - displayName: 'Deploy to Staging' - environment: graphexplorerapi-staging - templateContext: - type: releaseJob - isProduction: false - inputs: - - input: pipelineArtifact - artifactName: drop - targetPath: $(Build.ArtifactStagingDirectory) - strategy: - runOnce: - deploy: - steps: - - task: AzureFileCopy@6 - displayName: 'Upload Sample Query files' - inputs: - SourcePath: '$(Build.ArtifactStagingDirectory)/sample-queries/*' - azureSubscription: 'DevX PPE Content Managed Identity Connection' - Destination: AzureBlob - storage: devxapistppeeastus - ContainerName: 'staging-sample-queries' + # - stage: DeployStaging + # # condition: and(contains(variables['Build.SourceBranchName'], 'dev'), succeeded()) + # condition: false # disable this stage + # dependsOn: CopyArtifactFiles + # jobs: + # - deployment: staging + # displayName: 'Deploy to Staging' + # environment: graphexplorerapi-staging + # templateContext: + # type: releaseJob + # isProduction: false + # inputs: + # - input: pipelineArtifact + # artifactName: drop + # targetPath: $(Build.ArtifactStagingDirectory) + # strategy: + # runOnce: + # deploy: + # steps: + # - task: AzureFileCopy@6 + # displayName: 'Upload Sample Query files' + # inputs: + # SourcePath: '$(Build.ArtifactStagingDirectory)/sample-queries/*' + # azureSubscription: 'DevX PPE Content Managed Identity Connection' + # Destination: AzureBlob + # storage: devxapistppeeastus + # ContainerName: 'staging-sample-queries' - - task: AzureFileCopy@6 - displayName: 'Upload Permission Description Files ' - inputs: - SourcePath: '$(Build.ArtifactStagingDirectory)/permissions/*' - azureSubscription: 'DevX PPE Content Managed Identity Connection' - Destination: AzureBlob - storage: devxapistppeeastus - ContainerName: 'staging-permissions' + # - task: AzureFileCopy@6 + # displayName: 'Upload Permission Description Files ' + # inputs: + # SourcePath: '$(Build.ArtifactStagingDirectory)/permissions/*' + # azureSubscription: 'DevX PPE Content Managed Identity Connection' + # Destination: AzureBlob + # storage: devxapistppeeastus + # ContainerName: 'staging-permissions' - stage: DeployProduction From 0c860f67aa7b2ad8de700d49338fc19c5914dd3d Mon Sep 17 00:00:00 2001 From: Michael Mainer <8527305+MIchaelMainer@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:53:29 -0800 Subject: [PATCH 2/3] Update azure-pipelines/publishSamples.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- azure-pipelines/publishSamples.yml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/azure-pipelines/publishSamples.yml b/azure-pipelines/publishSamples.yml index fb79f562..736d4ca6 100644 --- a/azure-pipelines/publishSamples.yml +++ b/azure-pipelines/publishSamples.yml @@ -53,23 +53,8 @@ extends: **\sample-queries\** TargetFolder: '$(Build.ArtifactStagingDirectory)' - # - stage: DeployStaging - # # condition: and(contains(variables['Build.SourceBranchName'], 'dev'), succeeded()) - # condition: false # disable this stage - # dependsOn: CopyArtifactFiles - # jobs: - # - deployment: staging - # displayName: 'Deploy to Staging' - # environment: graphexplorerapi-staging - # templateContext: - # type: releaseJob - # isProduction: false - # inputs: - # - input: pipelineArtifact - # artifactName: drop - # targetPath: $(Build.ArtifactStagingDirectory) - # strategy: - # runOnce: + # Note: A staging deployment stage previously existed here. Reintroduce it as a + # conditionally included/guarded stage or template when a staging environment is ready. # deploy: # steps: # - task: AzureFileCopy@6 From a268d509b021cc0f051c000881d19bdae36cc211 Mon Sep 17 00:00:00 2001 From: Michael Mainer <8527305+MIchaelMainer@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:27:09 -0800 Subject: [PATCH 3/3] ci: remove info about stage, add ref --- azure-pipelines/publishSamples.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/azure-pipelines/publishSamples.yml b/azure-pipelines/publishSamples.yml index 736d4ca6..ad62319b 100644 --- a/azure-pipelines/publishSamples.yml +++ b/azure-pipelines/publishSamples.yml @@ -55,25 +55,7 @@ extends: # Note: A staging deployment stage previously existed here. Reintroduce it as a # conditionally included/guarded stage or template when a staging environment is ready. - # deploy: - # steps: - # - task: AzureFileCopy@6 - # displayName: 'Upload Sample Query files' - # inputs: - # SourcePath: '$(Build.ArtifactStagingDirectory)/sample-queries/*' - # azureSubscription: 'DevX PPE Content Managed Identity Connection' - # Destination: AzureBlob - # storage: devxapistppeeastus - # ContainerName: 'staging-sample-queries' - - # - task: AzureFileCopy@6 - # displayName: 'Upload Permission Description Files ' - # inputs: - # SourcePath: '$(Build.ArtifactStagingDirectory)/permissions/*' - # azureSubscription: 'DevX PPE Content Managed Identity Connection' - # Destination: AzureBlob - # storage: devxapistppeeastus - # ContainerName: 'staging-permissions' + # Check history for complete - stage: DeployProduction