mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Final fix for exploration merge (#7250)
* fix exploration merge * use pool * fix exploration * add login
This commit is contained in:
@@ -4,8 +4,9 @@ trigger:
|
|||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: Exploration Merge
|
- job: ExplorationMerge
|
||||||
container: ubuntu:16.04
|
pool:
|
||||||
|
vmImage: Ubuntu-16.04
|
||||||
steps:
|
steps:
|
||||||
- task: NodeTool@0
|
- task: NodeTool@0
|
||||||
inputs:
|
inputs:
|
||||||
@@ -14,6 +15,12 @@ jobs:
|
|||||||
- script: |
|
- script: |
|
||||||
set -e
|
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.email "andresse@microsoft.com"
|
||||||
git config user.name "AzureDataStudio"
|
git config user.name "AzureDataStudio"
|
||||||
|
|
||||||
@@ -27,3 +34,6 @@ jobs:
|
|||||||
git push explore HEAD:master
|
git push explore HEAD:master
|
||||||
|
|
||||||
displayName: Sync & Merge Explore
|
displayName: Sync & Merge Explore
|
||||||
|
env:
|
||||||
|
ADS_EXPLORE_REPO: $(ADS_EXPLORE_REPO)
|
||||||
|
DEVOPS_PASSWORD: $(DEVOPS_PASSWORD)
|
||||||
|
|||||||
Reference in New Issue
Block a user