@@ -46,14 +46,14 @@ jobs:
46
46
# if they have already been signed. This results in slower builds due to re-submitting the same .nupkg many times for signing.
47
47
# The sign settings have been configured to
48
48
49
- - script : ./eng/scripts/cibuild.cmd -arch x64 /p:DisableCodeSigning=true /bl:artifacts/logs /build.x64.binlog
49
+ - script : ./eng/scripts/cibuild.cmd -arch x64 /p:DisableCodeSigning=true /bl:artifacts/log /build.x64.binlog
50
50
displayName : Build x64
51
51
# TODO: make it possible to build for one Windows architecture at a time
52
52
# This is going to actually build x86 native assets. See https://github.com/aspnet/AspNetCore/issues/7196
53
53
54
54
# Build the x86 shared framework
55
55
# Set DisableSignCheck because we'll run sign check in an explicit step after installers build
56
- - script : ./eng/scripts/cibuild.cmd -arch x86 -NoRestore /t:BuildSharedFx /p:DisableCodeSigning=true /bl:artifacts/logs /build.x86.binlog
56
+ - script : ./eng/scripts/cibuild.cmd -arch x86 -NoRestore /t:BuildSharedFx /p:DisableCodeSigning=true /bl:artifacts/log /build.x86.binlog
57
57
displayName : Build x86
58
58
59
59
# This is in a separate build step with -forceCoreMsbuild to workaround MAX_PATH limitations - https://github.com/Microsoft/msbuild/issues/53
@@ -67,15 +67,15 @@ jobs:
67
67
# This runs code-signing on all packages, zips, and jar files as defined in build/CodeSign.targets. If https://github.com/dotnet/arcade/issues/1957 is resolved,
68
68
# consider running code-signing inline with the other previous steps.
69
69
# Sign check is disabled because it is run in a separate step below, after installers are built.
70
- - script : ./build.cmd -ci -sign -NoRestore /t:CodeSign /p:SignType=$(_SignType) /p:DisableSignCheck=true /bl:artifacts/logs /build.codesign.binlog
70
+ - script : ./build.cmd -ci -sign -NoRestore /t:CodeSign /p:SignType=$(_SignType) /p:DisableSignCheck=true /bl:artifacts/log /build.codesign.binlog
71
71
displayName : Code sign packages
72
72
73
73
# Windows installers bundle both x86 and x64 assets
74
74
- powershell : ./src/Installers/Windows/build.ps1 -ci /p:SignType=$(_SignType)
75
75
displayName : Build Installers
76
76
77
77
# Run sign check to verify everything was code signed.
78
- - script : ./build.cmd -ci -sign -NoRestore /t:SignCheck /p:SignType=$(_SignType) /bl:artifacts/logs /build.signcheck.binlog
78
+ - script : ./build.cmd -ci -sign -NoRestore /t:SignCheck /p:SignType=$(_SignType) /bl:artifacts/log /build.signcheck.binlog
79
79
displayName : Run sign check
80
80
condition : eq(variables['_SignType'], 'real')
81
81
89
89
- name : Windows_Installers
90
90
path : artifacts/installers/
91
91
- name : Windows_Logs
92
- path : artifacts/logs /
92
+ path : artifacts/log /
93
93
publishOnError : true
94
94
95
95
# Build Windows ARM
@@ -100,7 +100,7 @@ jobs:
100
100
jobDisplayName : " Build: Windows ARM"
101
101
agentOs : Windows
102
102
buildScript : ./eng/scripts/cibuild.cmd
103
- buildArgs : -arch arm -NoBuildNodeJS -NoBuildJava /p:SignType=$(_SignType) /bl:artifacts/logs /build.win-arm.binlog
103
+ buildArgs : -arch arm -NoBuildNodeJS -NoBuildJava /p:SignType=$(_SignType) /bl:artifacts/log /build.win-arm.binlog
104
104
installNodeJs : false
105
105
installJdk : false
106
106
afterBuild :
@@ -115,7 +115,7 @@ jobs:
115
115
- name : Windows_arm_Installers
116
116
path : artifacts/installers/
117
117
- name : Windows_arm_Logs
118
- path : artifacts/logs /
118
+ path : artifacts/log /
119
119
publishOnError : true
120
120
121
121
# Build MacOS
@@ -125,7 +125,7 @@ jobs:
125
125
jobDisplayName : " Build: macOS"
126
126
agentOs : macOs
127
127
buildScript : ./eng/scripts/cibuild.sh
128
- buildArgs : --no-build-nodejs --no-build-java /bl:artifacts/logs /build.macos.binlog
128
+ buildArgs : --no-build-nodejs --no-build-java /bl:artifacts/log /build.macos.binlog
129
129
installNodeJs : false
130
130
afterBuild :
131
131
# Remove packages that are not rid-specific.
@@ -140,7 +140,7 @@ jobs:
140
140
- name : MacOS_x64_Installers
141
141
path : artifacts/installers/
142
142
- name : MacOS_x64_Logs
143
- path : artifacts/logs /
143
+ path : artifacts/log /
144
144
publishOnError : true
145
145
- template : jobs/codesign-xplat.yml
146
146
parameters :
@@ -154,7 +154,7 @@ jobs:
154
154
agentOs : Linux
155
155
installNodeJs : false
156
156
steps :
157
- - script : ./eng/scripts/cibuild.sh --arch x64 --no-build-nodejs --no-build-java /bl:artifacts/logs /build.lin-x64.binlog
157
+ - script : ./eng/scripts/cibuild.sh --arch x64 --no-build-nodejs --no-build-java /bl:artifacts/log /build.lin-x64.binlog
158
158
displayName : Run cibuild.sh
159
159
- script : |
160
160
rm -rf .dotnet/
@@ -168,7 +168,7 @@ jobs:
168
168
/t:BuildSharedFx \
169
169
/p:BuildRuntimeArchive=false \
170
170
/p:LinuxInstallerType=deb \
171
- /bl:artifacts/logs /build.deb.binlog
171
+ /bl:artifacts/log /build.deb.binlog
172
172
displayName: Build Debian installers
173
173
- script : |
174
174
rm -rf .dotnet/
@@ -182,7 +182,7 @@ jobs:
182
182
/t:BuildSharedFx \
183
183
/p:BuildRuntimeArchive=false \
184
184
/p:LinuxInstallerType=rpm \
185
- /bl:artifacts/logs /build.rpm.binlog
185
+ /bl:artifacts/log /build.rpm.binlog
186
186
displayName: Build RPM installers
187
187
afterBuild :
188
188
# Remove packages that are not rid-specific.
@@ -197,7 +197,7 @@ jobs:
197
197
- name : Linux_x64_Installers
198
198
path : artifacts/installers/
199
199
- name : Linux_x64_Logs
200
- path : artifacts/logs /
200
+ path : artifacts/log /
201
201
publishOnError : true
202
202
- template : jobs/codesign-xplat.yml
203
203
parameters :
@@ -210,7 +210,7 @@ jobs:
210
210
jobDisplayName : " Build: Linux ARM"
211
211
agentOs : Linux
212
212
buildScript : ./eng/scripts/cibuild.sh
213
- buildArgs : --arch arm --no-build-nodejs --no-build-java /bl:artifacts/logs /build.lin-arm.binlog
213
+ buildArgs : --arch arm --no-build-nodejs --no-build-java /bl:artifacts/log /build.lin-arm.binlog
214
214
installNodeJs : false
215
215
afterBuild :
216
216
# Remove packages that are not rid-specific.
@@ -225,7 +225,7 @@ jobs:
225
225
- name : Linux_arm_Installers
226
226
path : artifacts/installers/
227
227
- name : Linux_arm_Logs
228
- path : artifacts/logs /
228
+ path : artifacts/log /
229
229
publishOnError : true
230
230
- template : jobs/codesign-xplat.yml
231
231
parameters :
@@ -238,7 +238,7 @@ jobs:
238
238
jobDisplayName : " Build: Linux ARM64"
239
239
agentOs : Linux
240
240
buildScript : ./eng/scripts/cibuild.sh
241
- buildArgs : --arch arm64 --no-build-nodejs --no-build-java /bl:artifacts/logs /build.arm64.binlog
241
+ buildArgs : --arch arm64 --no-build-nodejs --no-build-java /bl:artifacts/log /build.arm64.binlog
242
242
installNodeJs : false
243
243
afterBuild :
244
244
# Remove packages that are not rid-specific.
@@ -253,7 +253,7 @@ jobs:
253
253
- name : Linux_arm64_Installers
254
254
path : artifacts/installers/
255
255
- name : Linux_arm64_Logs
256
- path : artifacts/logs /
256
+ path : artifacts/log /
257
257
publishOnError : true
258
258
- template : jobs/codesign-xplat.yml
259
259
parameters :
@@ -266,7 +266,7 @@ jobs:
266
266
jobDisplayName : " Build: Linux Musl x64"
267
267
agentOs : Linux
268
268
buildScript : ./dockerbuild.sh alpine
269
- buildArgs : --ci --pack --all -e KOREBUILD_SKIP_INSTALL_NETFX=0 --arch x64 --os-name linux-musl --no-build-nodejs --no-build-java /bl:artifacts/logs /build.musl.binlog
269
+ buildArgs : --ci --pack --all -e KOREBUILD_SKIP_INSTALL_NETFX=0 --arch x64 --os-name linux-musl --no-build-nodejs --no-build-java /bl:artifacts/log /build.musl.binlog
270
270
installNodeJs : false
271
271
afterBuild :
272
272
# Remove packages that are not rid-specific.
@@ -281,7 +281,7 @@ jobs:
281
281
- name : Linux_musl_x64_Installers
282
282
path : artifacts/installers/
283
283
- name : Linux_musl_x64_Logs
284
- path : artifacts/logs /
284
+ path : artifacts/log /
285
285
publishOnError : true
286
286
- template : jobs/codesign-xplat.yml
287
287
parameters :
@@ -294,7 +294,7 @@ jobs:
294
294
jobDisplayName : " Build: Linux Musl ARM64"
295
295
agentOs : Linux
296
296
buildScript : ./dockerbuild.sh ubuntu-alpine37
297
- buildArgs : --ci --pack --all -e KOREBUILD_SKIP_INSTALL_NETFX=0 --arch arm64 --os-name linux-musl --no-build-nodejs --no-build-java /bl:artifacts/logs /build.musl.binlog
297
+ buildArgs : --ci --pack --all -e KOREBUILD_SKIP_INSTALL_NETFX=0 --arch arm64 --os-name linux-musl --no-build-nodejs --no-build-java /bl:artifacts/log /build.musl.binlog
298
298
installNodeJs : false
299
299
afterBuild :
300
300
# Remove packages that are not rid-specific.
@@ -309,7 +309,7 @@ jobs:
309
309
- name : Linux_musl_arm64_Installers
310
310
path : artifacts/installers/
311
311
- name : Linux_musl_arm64_Logs
312
- path : artifacts/logs /
312
+ path : artifacts/log /
313
313
publishOnError : true
314
314
- template : jobs/codesign-xplat.yml
315
315
parameters :
@@ -334,7 +334,7 @@ jobs:
334
334
continueOnError : true
335
335
artifacts :
336
336
- name : Windows_Test_Logs
337
- path : artifacts/logs /
337
+ path : artifacts/log /
338
338
publishOnError : true
339
339
340
340
- template : jobs/default-build.yml
@@ -351,7 +351,7 @@ jobs:
351
351
displayName : Build Repo
352
352
artifacts :
353
353
- name : Windows_Test_Templates_Logs
354
- path : artifacts/logs /
354
+ path : artifacts/log /
355
355
publishOnError : true
356
356
357
357
- template : jobs/default-build.yml
@@ -372,7 +372,7 @@ jobs:
372
372
continueOnError : true
373
373
artifacts :
374
374
- name : MacOS_Test_Logs
375
- path : artifacts/logs /
375
+ path : artifacts/log /
376
376
publishOnError : true
377
377
378
378
- template : jobs/default-build.yml
@@ -395,5 +395,5 @@ jobs:
395
395
continueOnError : true
396
396
artifacts :
397
397
- name : Linux_Test_Logs
398
- path : artifacts/logs /
398
+ path : artifacts/log /
399
399
publishOnError : true
0 commit comments