From 6af544afde27852343d403e2e11de7e104183a27 Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Tue, 17 Sep 2019 16:25:17 -0700 Subject: [PATCH] Final fix for exploration merge (#7250) * fix exploration merge * use pool * fix exploration * add login --- build/azure-pipelines/exploration-merge.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/build/azure-pipelines/exploration-merge.yml b/build/azure-pipelines/exploration-merge.yml index c5eb4e72a9..e43c7db35e 100644 --- a/build/azure-pipelines/exploration-merge.yml +++ b/build/azure-pipelines/exploration-merge.yml @@ -4,8 +4,9 @@ trigger: pr: none jobs: - - job: Exploration Merge - container: ubuntu:16.04 + - job: ExplorationMerge + pool: + vmImage: Ubuntu-16.04 steps: - task: NodeTool@0 inputs: @@ -14,6 +15,12 @@ jobs: - script: | set -e + cat << EOF > ~/.netrc + machine mssqltools.visualstudio.com + login azuredatastudio + password $(DEVOPS_PASSWORD) + EOF + git config user.email "andresse@microsoft.com" git config user.name "AzureDataStudio" @@ -27,3 +34,6 @@ jobs: git push explore HEAD:master displayName: Sync & Merge Explore + env: + ADS_EXPLORE_REPO: $(ADS_EXPLORE_REPO) + DEVOPS_PASSWORD: $(DEVOPS_PASSWORD)