forked from Azure/azure-storage-azcopy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
412 lines (371 loc) · 16 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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
variables:
AZCOPY_GOLANG_VERSION: '1.22.5'
AZCOPY_GOLANG_VERSION_COVERAGE: '1.22.5'
trigger:
branches:
include:
- dev
- main
pr:
branches:
include:
- dev
- main
jobs:
- job: Build
timeoutInMinutes: 360
strategy:
matrix:
Ubuntu-20:
imageName: 'ubuntu-latest'
type: 'linux'
MacOS:
imageName: 'macos-latest'
type: 'mac-os'
Windows:
imageName: 'windows-latest'
type: 'windows'
pool:
vmImage: $(imageName)
steps:
- task: GoTool@0
env:
GO111MODULE: 'on'
inputs:
version: $(AZCOPY_GOLANG_VERSION)
- script: |
echo 'Running GO Vet'
go vet
displayName: 'Golang Vet - Linux'
workingDirectory: $(System.DefaultWorkingDirectory)
- script: |
GOARCH=amd64 GOOS=linux go build -tags "netgo" -o "$(Build.ArtifactStagingDirectory)/azcopy_linux_amd64"
displayName: 'Generate Linux AMD64'
condition: eq(variables.type, 'linux')
- script: |
GOARCH=amd64 GOOS=linux go build -tags "netgo,se_integration" -o "$(Build.ArtifactStagingDirectory)/azcopy_linux_se_amd64"
displayName: 'Generate Linux AMD64 SE Integration'
condition: eq(variables.type, 'linux')
- script: |
GOARCH=arm64 GOOS=linux go build -tags "netgo" -o "$(Build.ArtifactStagingDirectory)/azcopy_linux_arm64"
displayName: 'Generate Linux ARM64'
condition: eq(variables.type, 'linux')
- script: |
go build -o "$(Build.ArtifactStagingDirectory)/azcopy_windows_amd64.exe"
displayName: 'Generate Windows AMD64'
condition: eq(variables.type, 'windows')
env:
GOARCH: amd64
GOOS: windows
CGO_ENABLED: 0
- script: |
go build -o "$(Build.ArtifactStagingDirectory)/azcopy_windows_386.exe"
displayName: 'Generate Windows i386'
condition: eq(variables.type, 'windows')
env:
GOARCH: 386
GOOS: windows
CGO_ENABLED: 0
- script: |
go build -o "$(Build.ArtifactStagingDirectory)/azcopy_windows_v7_arm.exe"
displayName: 'Generate Windows ARM'
condition: eq(variables.type, 'windows')
env:
GOARCH: arm
GOARM: 7
GOOS: windows
CGO_ENABLED: 0
- script: |
cp NOTICE.txt $(Build.ArtifactStagingDirectory)
displayName: 'Copy NOTICE.txt'
condition: eq(variables.type, 'linux')
- script: |
CGO_ENABLED=1 go build -o "$(Build.ArtifactStagingDirectory)/azcopy_darwin_amd64"
displayName: 'Generate MacOS Build with AMD64'
condition: eq(variables.type, 'mac-os')
# uncomment below when manually releasing for m1
# - script: |
# curl -o "$(Build.ArtifactStagingDirectory)/azcopy_darwin_arm64" -L "BUILD_URL"
# displayName: 'Generate MacOS Build with ARM64'
# condition: eq(variables.type, 'mac-os')
# cross compile to make sure nothing broke
- script: |
GOARCH=arm64 CGO_ENABLED=1 go build
displayName: 'Test Cross-compiled MacOS Build with ARM64'
condition: eq(variables.type, 'mac-os')
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifacts'
condition: succeededOrFailed()
- task: ComponentGovernanceComponentDetection@0
inputs:
scanType: 'Register'
verbosity: 'Verbose'
alertWarningLevel: 'High'
- job: E2E_Test
timeoutInMinutes: 360
# Creating strategies for GOOS: Windows Server 2019 /macOS X Mojave 10.15/Ubuntu 20.04
strategy:
matrix:
Ubuntu-20:
imageName: 'ubuntu-latest'
build_name: 'azcopy_linux_amd64'
display_name: "Linux"
Windows:
imageName: 'windows-latest'
build_name: 'azcopy_windows_amd64.exe'
display_name: "Windows"
type: 'windows'
MacOS:
imageName: 'macos-latest'
build_name: 'azcopy_darwin_amd64'
display_name: "MacOS"
pool:
vmImage: $(imageName)
steps:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: 'Install-Module -Name Az.Accounts -Scope CurrentUser -Repository PSGallery -AllowClobber -Force'
pwsh: 'true'
displayName: 'Install Powershell Az Module'
- task: GoTool@0
inputs:
version: $(AZCOPY_GOLANG_VERSION_COVERAGE)
- script: |
go install github.com/jstemmer/[email protected]
go install github.com/axw/gocov/[email protected]
go install github.com/AlekSi/[email protected]
go install github.com/matm/[email protected]
displayName: 'Installing dependencies'
- bash: |
echo "##vso[task.setvariable variable=CGO_ENABLED]0"
displayName: 'Set CGO_ENABLED for Windows'
condition: eq(variables.type, 'windows')
- bash: |
npm install -g azurite
mkdir azurite
azurite --silent --location azurite --debug azurite\debug.log &
displayName: 'Install and Run Azurite'
# Running E2E Tests on AMD64
- task: AzureCLI@2
inputs:
azureSubscription: azcopytestworkloadidentity
addSpnToEnvironment: true
scriptType: pscore
scriptLocation: inlineScript
inlineScript: |
# Create coverage directory
if (-Not (Test-Path -Path "./coverage")) {
New-Item -Path "./coverage" -ItemType Directory
}
# Print "Building executable"
Write-Output "Building executable"
# Set platform-specific environment variables and tags
$tags = ""
$suffix = ""
$build_name = ""
$display_name = ""
if ($IsWindows) {
$env:GOOS = "windows"
$env:GOARCH = "amd64"
$suffix = ".exe"
$build_name = "azcopy_windows_amd64.exe"
$display_name = "Windows"
} elseif ($IsLinux) {
$env:GOOS = "linux"
$env:GOARCH = "amd64"
$tags = "netgo"
$build_name = "azcopy_linux_amd64"
$display_name = "Linux"
} elseif ($IsMacOS) {
$env:GOOS = "darwin"
$env:GOARCH = "amd64"
$env:CGO_ENABLED = "1"
$build_name = "azcopy_darwin_amd64"
$display_name = "MacOS"
} else {
Write-Error "Unsupported operating system"
exit 1
}
# Build the Go program
if ($tags -ne "") {
go build -cover -tags $tags -o $build_name
} else {
go build -cover -o $build_name
}
# Print "Running tests"
Write-Output "Running tests"
# Run tests and pipe output to test.txt
go test -timeout=2h -v ./e2etest | Tee-Object -FilePath test.txt
# Save the exit code from the previous command
$exitCode = $LASTEXITCODE
# Print the contents of test.txt
# Get-Content test.txt
# Print "Generating junit report"
Write-Output "Generating junit report"
# Pipe info in test.txt to go-junit-report and save output to report.xml
Get-Content test.txt | & "$(go env GOPATH)/bin/go-junit-report" > "${display_name}_report.xml"
# Print "Formatting coverage directory to legacy txt format"
Write-Output "Formatting coverage directory to legacy txt format"
# Format coverage data to text format
go tool covdata textfmt -i=coverage -o "${display_name}_coverage.txt"
# Print "Formatting coverage to json format"
Write-Output "Formatting coverage to json format"
# Convert coverage.txt to coverage.json
& "$(go env GOPATH)/bin/gocov$suffix" convert "${display_name}_coverage.txt" > "${display_name}_coverage.json"
# Print "Formatting coverage to xml format"
Write-Output "Formatting coverage to xml format"
# Convert coverage.json to coverage.xml
Get-Content "${display_name}_coverage.json" | & "$(go env GOPATH)/bin/gocov-xml$suffix" > "${display_name}_coverage.xml"
# Return the exit code from step 5
exit $exitCode
env:
AZCOPY_E2E_ACCOUNT_KEY: $(AZCOPY_E2E_ACCOUNT_KEY)
AZCOPY_E2E_ACCOUNT_NAME: $(AZCOPY_E2E_ACCOUNT_NAME)
AZCOPY_E2E_ACCOUNT_KEY_HNS: $(AZCOPY_E2E_ACCOUNT_KEY_HNS)
AZCOPY_E2E_ACCOUNT_NAME_HNS: $(AZCOPY_E2E_ACCOUNT_NAME_HNS)
AZCOPY_E2E_CLASSIC_ACCOUNT_NAME: $(AZCOPY_E2E_CLASSIC_ACCOUNT_NAME)
AZCOPY_E2E_CLASSIC_ACCOUNT_KEY: $(AZCOPY_E2E_CLASSIC_ACCOUNT_KEY)
AZCOPY_E2E_LOG_OUTPUT: '$(System.DefaultWorkingDirectory)/logs'
AZCOPY_E2E_OAUTH_MANAGED_DISK_CONFIG: $(AZCOPY_E2E_OAUTH_MANAGED_DISK_CONFIG)
AZCOPY_E2E_OAUTH_MANAGED_DISK_SNAPSHOT_CONFIG: $(AZCOPY_E2E_OAUTH_MANAGED_DISK_SNAPSHOT_CONFIG)
AZCOPY_E2E_STD_MANAGED_DISK_CONFIG: $(AZCOPY_E2E_STD_MANAGED_DISK_CONFIG)
AZCOPY_E2E_STD_MANAGED_DISK_SNAPSHOT_CONFIG: $(AZCOPY_E2E_STD_MANAGED_DISK_SNAPSHOT_CONFIG)
CPK_ENCRYPTION_KEY: $(CPK_ENCRYPTION_KEY)
CPK_ENCRYPTION_KEY_SHA256: $(CPK_ENCRYPTION_KEY_SHA256)
AZCOPY_E2E_EXECUTABLE_PATH: $(System.DefaultWorkingDirectory)/$(build_name)
GOCOVERDIR: '$(System.DefaultWorkingDirectory)/coverage'
NEW_E2E_SUBSCRIPTION_ID: $(AZCOPY_NEW_E2E_SUBSCRIPTION_ID)
NEW_E2E_AZCOPY_PATH: $(System.DefaultWorkingDirectory)/$(build_name)
NEW_E2E_ENVIRONMENT: "AzurePipeline"
displayName: 'E2E Test $(display_name) - AMD64 with Workload Identity'
- task: PublishBuildArtifacts@1
displayName: 'Publish logs'
condition: succeededOrFailed()
inputs:
pathToPublish: '$(System.DefaultWorkingDirectory)/logs'
artifactName: logs
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: $(System.DefaultWorkingDirectory)/**/$(display_name)_report.xml
testRunTitle: 'Go on $(display_name)'
- task: PublishCodeCoverageResults@1
condition: succeededOrFailed()
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: $(System.DefaultWorkingDirectory)/**/$(display_name)_coverage.xml
additionalCodeCoverageFiles: $(System.DefaultWorkingDirectory)/**/$(display_name)_coverage.html
- job: Test_On_Ubuntu
variables:
isMutexSet: 'false'
# allow maximum build time, in case we have build congestion
timeoutInMinutes: 360
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
name: 'Set_up_Python'
inputs:
versionSpec: '3.7'
- task: GoTool@0
name: 'Set_up_Golang'
inputs:
version: $(AZCOPY_GOLANG_VERSION_COVERAGE)
- task: DownloadSecureFile@1
name: ciGCSServiceAccountKey
displayName: 'Download GCS Service Account Key'
inputs:
secureFile: 'ci-gcs-dev.json'
- script: |
go install github.com/jstemmer/[email protected]
go install github.com/axw/gocov/[email protected]
go install github.com/AlekSi/[email protected]
go install github.com/matm/[email protected]
displayName: 'Install dependencies'
- script: |
pip install azure-storage-blob==12.12.0
# set the variable to indicate that the mutex is being acquired
# note: we set it before acquiring the mutex to ensure we release the mutex.
# setting this after can result in an un-broken mutex if someone cancels the pipeline after we acquire the
# mutex but before we set this variable.
# setting this before will always work since it is valid to break an un-acquired mutex.
echo '##vso[task.setvariable variable=isMutexSet]true'
# acquire the mutex before running live tests to avoid conflicts
python ./tool_distributed_mutex.py lock "$(MUTEX_URL)"
name: 'Acquire_the_distributed_mutex'
- template: azurePipelineTemplates/run-ut.yml
parameters:
directory: 'cmd'
coverage_name: 'cmd'
- template: azurePipelineTemplates/run-ut.yml
parameters:
directory: 'common'
coverage_name: 'common'
- template: azurePipelineTemplates/run-ut.yml
parameters:
directory: 'common/parallel'
coverage_name: 'parallel'
- template: azurePipelineTemplates/run-ut.yml
parameters:
directory: 'ste'
coverage_name: 'ste'
with_federated_credential: true
- template: azurePipelineTemplates/run-ut.yml
parameters:
directory: 'sddl'
coverage_name: 'sddl'
- script: |
GOARCH=amd64 GOOS=linux go build -cover -tags "netgo" -o azcopy_linux_amd64
go build -tags "netgo" -o test-validator ./testSuite/
mkdir test-temp
mkdir coverage
export AZCOPY_EXECUTABLE_PATH=$(pwd)/azcopy_linux_amd64
export TEST_SUITE_EXECUTABLE_LOCATION=$(pwd)/test-validator
export TEST_DIRECTORY_PATH=$(pwd)/test-temp
keyctl session test python ./testSuite/scripts/run.py
echo 'Formatting coverage directory to legacy txt format'
go tool covdata textfmt -i=coverage -o smoke_coverage.txt
echo 'Formatting coverage to json format'
$(go env GOPATH)/bin/gocov convert smoke_coverage.txt > smoke_coverage.json
echo 'Formatting coverage to xml format'
$(go env GOPATH)/bin/gocov-xml < smoke_coverage.json > smoke_coverage.xml
name: 'Run_smoke_tests'
env:
ACCOUNT_NAME: $(ACCOUNT_NAME)
ACCOUNT_KEY: $(ACCOUNT_KEY)
AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID)
AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY)
GOOGLE_CLOUD_PROJECT: $(GOOGLE_CLOUD_PROJECT)
GOOGLE_APPLICATION_CREDENTIALS: $(ciGCSServiceAccountKey.secureFilePath)
ACTIVE_DIRECTORY_APPLICATION_ID: $(ACTIVE_DIRECTORY_APPLICATION_ID)
AZCOPY_SPA_CLIENT_SECRET: $(AZCOPY_SPA_CLIENT_SECRET)
CONTAINER_OAUTH_URL: $(CONTAINER_OAUTH_URL)
CONTAINER_OAUTH_VALIDATE_SAS_URL: $(CONTAINER_OAUTH_VALIDATE_SAS_URL)
CONTAINER_SAS_URL: $(CONTAINER_SAS_URL)
FILESYSTEM_SAS_URL: $(FILESYSTEM_SAS_URL)
FILESYSTEM_URL: $(FILESYSTEM_URL)
OAUTH_AAD_ENDPOINT: $(OAUTH_AAD_ENDPOINT)
OAUTH_TENANT_ID: $(OAUTH_TENANT_ID)
PREMIUM_CONTAINER_SAS_URL: $(PREMIUM_CONTAINER_SAS_URL)
S2S_DST_BLOB_ACCOUNT_SAS_URL: $(S2S_DST_BLOB_ACCOUNT_SAS_URL)
S2S_SRC_BLOB_ACCOUNT_SAS_URL: $(S2S_SRC_BLOB_ACCOUNT_SAS_URL)
S2S_SRC_FILE_ACCOUNT_SAS_URL: $(S2S_SRC_FILE_ACCOUNT_SAS_URL)
S2S_SRC_S3_SERVICE_URL: $(S2S_SRC_S3_SERVICE_URL)
S2S_SRC_GCP_SERVICE_URL: $(S2S_SRC_GCP_SERVICE_URL)
SHARE_SAS_URL: $(SHARE_SAS_URL)
GOCOVERDIR: '$(System.DefaultWorkingDirectory)/coverage'
condition: succeededOrFailed()
# Smoke Tests Publishing
- task: PublishCodeCoverageResults@1
condition: succeededOrFailed()
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: $(System.DefaultWorkingDirectory)/**/smoke_coverage.xml
- script: |
pip install azure-storage-blob==12.12.0
python ./tool_distributed_mutex.py unlock "$(MUTEX_URL)"
name: 'Release_the_distributed_mutex'
# this runs even if the job was canceled (only if the mutex was acquired by this job)
condition: and(always(), eq(variables['isMutexSet'], 'true'))