-
Notifications
You must be signed in to change notification settings - Fork 32
/
devops-integration.yml
195 lines (169 loc) · 5.98 KB
/
devops-integration.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
resources:
repositories:
- repository: Service # The name used to reference this repository in the checkout step
type: github
endpoint: dmitrykurmanov:admin
name: surveyjs/service
trigger:
batch: true
branches:
include:
- master
tags:
exclude:
- v*.*.*
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
- checkout: Service
persistCredentials: true
clean: true
fetchDepth: 1
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'
- task: CopyFiles@2
inputs:
SourceFolder: "$(Build.SourcesDirectory)/survey-pdf/"
Contents: "package.json"
TargetFolder: "$(Build.SourcesDirectory)/Temp/"
OverWrite: true
displayName: "Copy package.json for cache key"
- task: Cache@2
inputs:
key: 'npm-cache-pdf | $(Build.SourcesDirectory)/Temp/package.json'
path: $(Build.SourcesDirectory)/survey-pdf/node_modules
cacheHitVar: NPM_CACHE_RESTORED
displayName: Cache NPM
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: 'set up Git config'
- task: Npm@1
displayName: 'NPM install'
inputs:
command: install
verbose: false
workingDir: $(Build.SourcesDirectory)/survey-pdf
condition: ne(variables.NPM_CACHE_RESTORED, 'true')
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'specific'
project: 'af2804d2-859a-4705-9ef5-cdf46d1d5d4f'
pipeline: '56'
specificBuildWithTriggering: true
buildVersionToDownload: 'latest'
downloadType: 'single'
artifactName: 'SurveyJSLibraryBuildCoreAngularJquery'
downloadPath: '$(System.ArtifactsDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.ArtifactsDirectory)/SurveyJSLibraryBuildCoreAngularJquery/packages/survey-core'
Contents: '**'
TargetFolder: '$(Build.SourcesDirectory)/survey-pdf/node_modules/survey-core'
OverWrite: true
# npm run release with version
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.ArtifactsDirectory)/SurveyJSLibraryBuildCoreAngularJquery/'
Contents: 'version.txt'
TargetFolder: '$(Build.SourcesDirectory)/'
OverWrite: true
displayName: 'Copy Build Artifact - SurveyJSVersion File'
- powershell: |
$version = Get-Content $(Build.SourcesDirectory)/version.txt
Write-Host "##vso[task.setvariable variable=SurveyJSVersion;]$version"
displayName: 'setup SurveyJSVersion variable from SurveyJSVersionFile'
- powershell: |
cd $(Build.SourcesDirectory)/survey-pdf
npm run release -- --release-as $(SurveyJSVersion)
displayName: 'npm run release specific version'
#####################################################
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'specific'
project: 'af2804d2-859a-4705-9ef5-cdf46d1d5d4f'
pipeline: '42'
specificBuildWithTriggering: true
buildVersionToDownload: 'latest'
downloadType: 'single'
artifactName: 'SurveyJSWidgetsBuild'
downloadPath: '$(System.ArtifactsDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.ArtifactsDirectory)/SurveyJSWidgetsBuild/packages/survey-widgets'
Contents: '**'
TargetFolder: '$(Build.SourcesDirectory)/survey-pdf/node_modules/surveyjs-widgets'
OverWrite: true
- script: |
cd $(Build.SourcesDirectory)/survey-pdf
npm run build_fonts
displayName: 'build fonts'
- script: |
cd $(Build.SourcesDirectory)/survey-pdf
npm run build_prod
displayName: 'build'
- script: |
cd $(Build.SourcesDirectory)/survey-pdf
npm test
displayName: 'unit tests'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura # or JaCoCo
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/*coverage.xml'
reportDirectory: '$(System.DefaultWorkingDirectory)/**/coverage'
- script: |
cd $(Build.SourcesDirectory)/survey-pdf
npm run doc_gen
displayName: 'generate docs'
- task: CopyFiles@2
inputs:
SourceFolder: '$(Build.SourcesDirectory)/survey-pdf/docs'
Contents: |
classes.json
pmes.json
surveyjs_definition.json
TargetFolder: '$(Build.SourcesDirectory)/service/surveyjs.io/App_Data/DocsPdf'
OverWrite: true
CleanTargetFolder: false
displayName: 'copy generated docs to the local surveyjs/service repo'
- task: CopyFiles@2
inputs:
SourceFolder: '$(Build.SourcesDirectory)/survey-pdf'
Contents: 'README.md'
TargetFolder: '$(Build.SourcesDirectory)/service/surveyjs.io/App_Data/DocsPdf'
displayName: 'copy generated docs to the local surveyjs/service repo'
# - task: DeleteFiles@1
# inputs:
# SourceFolder: '$(Build.SourcesDirectory)/service/surveyjs.io/App_Data/DocsPdf'
# Contents: 'PdfExportOverview.md'
# Rename-Item -Path "$(Build.SourcesDirectory)/service/surveyjs.io/App_Data/DocsPdf/README.md" -NewName "PdfExportOverview.md"
# read about the problem with git output ($env:GIT_REDIRECT_STDERR = '2>&1') :
# https://github.com/microsoft/azure-pipelines-yaml/issues/248
# https://stackoverflow.com/questions/58485585/azure-pipeline-powershell-and-git-on-windows-server-2019-gives-error-in-output
- powershell: |
cd $(Build.SourcesDirectory)/service
git pull origin master
git fetch origin master --tags --force
git checkout master
git add surveyjs.io/App_Data/DocsPdf
git commit -m "updated survey-pdf docs"
git pull origin master
git push origin master
displayName: 'git surveyjs/service push updated docs'
- task: CopyFiles@2
inputs:
SourceFolder: '$(Build.SourcesDirectory)/survey-pdf/packages/survey-pdf'
targetFolder: $(Build.ArtifactStagingDirectory)/SurveyjsPDFbuild/packages/survey-pdf
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)/SurveyjsPDFbuild/'
ArtifactName: 'SurveyjsPDFbuild'
publishLocation: 'Container'