Skip to content

Commit

Permalink
Pipeline rev 1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdiachen-ss committed Mar 17, 2021
1 parent 6568c52 commit 780736a
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#fcf797",
"activityBar.activeBorder": "#05bab1",
"activityBar.background": "#fcf797",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#05bab1",
"activityBarBadge.foreground": "#15202b",
"statusBar.background": "#fbf365",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#faef33",
"titleBar.activeBackground": "#fbf365",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#fbf36599",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#fbf365"
}
23 changes: 23 additions & 0 deletions azp-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Mono repo

trigger:
branches:
include:
- main

pr:
branches:
include:
- main

stages:
- stage: Checkout

displayName: 'Checkout and analysis'
jobs:
- job: 'Checkout'
steps:
- checkout: self

- script: echo Checkout

31 changes: 31 additions & 0 deletions azp-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: User Sync Production Deploy Pipeline

resources:
pipelines:
- pipeline: PowerDMS
source: PowerDMS.PowerDMS
trigger:
branches:
include:
- develop
stages:
- UserSync_DeployStage

trigger: none

pr: none

stages:
- stage: UserSync_DeployProd
displayName: "Sync: Prod Deploy"
condition: and(succeeded(), eq(variables['build.sourceBranch'], 'refs/heads/develop'))
jobs:
- job: DeployToProd
displayName: Prod Deploy
timeoutInMinutes: 10
pool:
vmImage: ubuntu-latest
steps:
- checkout: self

- script: echo "Prod Deploy"

0 comments on commit 780736a

Please sign in to comment.