Skip to content

Commit a55703b

Browse files
committed
Remove test binlog
1 parent 1eb5e85 commit a55703b

File tree

3 files changed

+6
-40
lines changed

3 files changed

+6
-40
lines changed

eng/ci/templates/jobs/run-unit-tests.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,6 @@ jobs:
77
value: |
88
**\ExtensionsMetadataGeneratorTests.csproj
99
**\WebJobs.Script.Tests.csproj
10-
- name: log_dir
11-
value: $(Build.ArtifactStagingDirectory)/log
12-
13-
templateContext:
14-
outputParentDirectory: $(Build.ArtifactStagingDirectory)
15-
outputs:
16-
- output: pipelineArtifact
17-
displayName: Publish logs
18-
path: $(log_dir)
19-
artifact: Unit_Test_Log
20-
sbomEnabled: false
21-
condition: always()
2210
2311
steps:
2412
- template: /eng/ci/templates/install-dotnet.yml@self
@@ -28,14 +16,14 @@ jobs:
2816
inputs:
2917
command: custom
3018
custom: restore
31-
arguments: -v m -bl:$(log_dir)/restore.binlog
19+
arguments: -v m
3220
projects: $(test_projects)
3321

3422
- task: DotNetCoreCLI@2
3523
displayName: Build
3624
inputs:
3725
command: build
38-
arguments: -v m -c release --no-restore -bl:$(log_dir)/build.binlog
26+
arguments: -v m -c release --no-restore
3927
projects: $(test_projects)
4028

4129
- task: DotNetCoreCLI@2

eng/ci/templates/official/jobs/run-integration-tests.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,6 @@ jobs:
1111
test_projects: test/WebJobs.Script.Tests.Integration/WebJobs.Script.Tests.Integration.csproj
1212
is_release: $[contains(variables['Build.SourceBranch'], 'release/')]
1313
test_args: -c release --no-build
14-
log_dir: $(Build.ArtifactStagingDirectory)/log
15-
16-
templateContext:
17-
outputParentDirectory: $(Build.ArtifactStagingDirectory)
18-
outputs:
19-
- output: pipelineArtifact
20-
displayName: Publish logs
21-
path: $(log_dir)
22-
artifact: Integration_Test_Log
23-
sbomEnabled: false
24-
condition: always()
2514

2615
steps:
2716
- template: /eng/ci/templates/install-dotnet.yml@self
@@ -96,14 +85,14 @@ jobs:
9685
inputs:
9786
command: custom
9887
custom: restore
99-
arguments: -v m -bl:$(log_dir)/restore.binlog
88+
arguments: -v m
10089
projects: $(test_projects)
10190

10291
- task: DotNetCoreCLI@2
10392
displayName: Build
10493
inputs:
10594
command: build
106-
arguments: -v m -c release --no-restore -bl:$(log_dir)/build.binlog
95+
arguments: -v m -c release --no-restore
10796
projects: $(test_projects)
10897

10998
- task: DotNetCoreCLI@2

eng/ci/templates/official/jobs/run-non-e2e-tests.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@ jobs:
99

1010
variables:
1111
test_projects: test/WebJobs.Script.Tests.Integration/WebJobs.Script.Tests.Integration.csproj
12-
log_dir: $(Build.ArtifactStagingDirectory)/log
13-
14-
templateContext:
15-
outputParentDirectory: $(Build.ArtifactStagingDirectory)
16-
outputs:
17-
- output: pipelineArtifact
18-
displayName: Publish logs
19-
path: $(log_dir)
20-
artifact: Non_E2E_Test_Log
21-
sbomEnabled: false
22-
condition: always()
2312

2413
steps:
2514
- template: /eng/ci/templates/install-dotnet.yml@self
@@ -65,14 +54,14 @@ jobs:
6554
inputs:
6655
command: custom
6756
custom: restore
68-
arguments: -v m -bl:$(log_dir)/restore.binlog
57+
arguments: -v m
6958
projects: $(test_projects)
7059

7160
- task: DotNetCoreCLI@2
7261
displayName: Build
7362
inputs:
7463
command: build
75-
arguments: -v m -c release --no-restore -bl:$(log_dir)/build.binlog
64+
arguments: -v m -c release --no-restore
7665
projects: $(test_projects)
7766

7867
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)