-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
85 lines (81 loc) · 2.02 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
trigger:
- main
resources:
- repo: self
name: $(major).$(minor)$(Rev:.r)
variables:
patch: $[counter(variables['minor'], 0)]
stages:
- stage: Version
displayName: Version
jobs:
- job: Version
steps:
- bash: |
echo "##vso[build.updatebuildnumber]$(major).$(minor).$(patch)"
name: SetMasterBuildName
- stage: BuildTest
displayName: 'Build and Test'
jobs:
- job: Backend
displayName: Backend
steps:
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: 'build'
workingDirectory: backend
configuration: $(buildConfiguration)
- task: DotNetCoreCLI@2
displayName: "dotnet test"
inputs:
command: 'test'
workingDirectory: backend/tests
- task: PublishTestResults@2
displayName: Publish .NET Core test results
condition: succeededOrFailed()
inputs:
testRunner: VSTest
testResultsFiles: '**/*.trx'
- job: Frontend
displayName: Frontend
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
command: install
workingDir: webapp
- task: Npm@1
displayName: 'npm build'
inputs:
command: custom
workingDir: webapp
customCommand: run build
- stage: Deploy
displayName: Deploy to dockerhub
jobs:
- job: BuildBackend
displayName: Build backend image
pool:
vmImage: ubuntu-latest
steps:
- task: Docker@2
inputs:
containerRegistry: 'dockerhub'
repository: 'aleksanderkus/foodreview-backend'
command: 'buildAndPush'
tags: latest
Dockerfile: 'backend/release/Dockerfile.api'
buildContext: 'backend'
- job: BuildFrontend
displayName: Build frontend image
pool:
vmImage: ubuntu-latest
steps:
- task: Docker@2
inputs:
containerRegistry: 'dockerhub'
repository: 'aleksanderkus/foodreview-frontend'
command: 'buildAndPush'
tags: latest
buildContext: 'webapp'