forked from EasyAbp/Abp.TagHelperPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
111 lines (98 loc) · 2.73 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
schedules:
- cron: "0 */6 * * *"
displayName: Daily midnight build
branches:
include:
- master
always: true
trigger:
branches:
include:
- master
stages:
- stage: Stage1
jobs:
- job: Job1
pool:
vmImage: ubuntu-latest
steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'
- task: DotNetCoreCLI@2
displayName: 'restore'
inputs:
command: 'restore'
feedsToUse: 'select'
- task: DotNetCoreCLI@2
displayName: 'build'
inputs:
command: 'build'
- task: CmdLine@2
displayName: 'publish'
inputs:
script: |
dotnet publish
- stage: Stage2
jobs:
- job: Job1
pool:
vmImage: windows-2019
steps:
- task: SqlDacpacDeploymentOnMachineGroup@0
displayName: 'drop database'
inputs:
TaskType: 'sqlInline'
InlineSql: |
DECLARE @SQL VARCHAR(MAX);
SET @SQL=''
SELECT @SQL=@SQL+'; KILL '+RTRIM(SPID)
FROM master..sysprocesses
WHERE dbid=DB_ID('TagHelperPlus_Unified');
EXEC(@SQL);
drop DATABASE TagHelperPlus_Unified
ServerName: $(ServerName)
DatabaseName: $(DatabaseName)
AuthScheme: 'sqlServerAuthentication'
SqlUsername: $(SqlUsername)
SqlPassword: $(SqlPassword)
continueOnError: true
- stage: Stage3
jobs:
- job: Job1
pool:
vmImage: ubuntu-latest
steps:
- task: CmdLine@2
inputs:
script: |
echo commands
sed -i '0,/Default[^,]*/s//$(ConnectionStrings)"/g' host/EasyAbp.Abp.TagHelperPlus.Web.Unified/appsettings.json
echo commands executed
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'
- task: CmdLine@2
displayName: 'install dotnet-ef'
inputs:
script: 'dotnet tool install -g dotnet-ef'
- task: CmdLine@2
displayName: 'update database'
inputs:
script: |
dotnet ef database update --project host/EasyAbp.Abp.TagHelperPlus.Web.Unified/EasyAbp.Abp.TagHelperPlus.Web.Unified.csproj
- task: Docker@2
displayName: 'build and push docker'
inputs:
containerRegistry: $(DockerRegistry)
repository: $(repository)
command: 'buildAndPush'
Dockerfile: 'host/EasyAbp.Abp.TagHelperPlus.Web.Unified/Dockerfile'
buildContext: .
tags: 'latest'