Skip to content

Commit ecc7d42

Browse files
author
John Luo
committed
There were a few more places logs was used instead of log
1 parent 63ddb46 commit ecc7d42

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.azure/pipelines/helix-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
agentOs: Windows
1616
timeoutInMinutes: 240
1717
steps:
18-
- script: .\build.cmd -all -ci /t:Helix /p:IsHelixJob=true /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\logs\SendToHelix.binlog
18+
- script: .\build.cmd -all -ci /t:Helix /p:IsHelixJob=true /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\SendToHelix.binlog
1919
displayName: Run build.cmd helix target
2020
env:
2121
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
2222
artifacts:
2323
- name: Helix_logs
24-
path: artifacts/logs/
24+
path: artifacts/log/
2525
publishOnError: true

.azure/pipelines/jobs/default-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
condition: always()
211211
inputs:
212212
testRunner: junit
213-
testResultsFiles: '**/artifacts/logs/**/*.junit.xml'
213+
testResultsFiles: '**/artifacts/log/**/*.junit.xml'
214214
buildConfiguration: $(BuildConfiguration)
215215
buildPlatform: $(AgentOsName)
216216
- task: PublishTestResults@2

.azure/pipelines/signalr-daily-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616
jobDisplayName: "SignalR Daily Tests"
1717
artifacts:
1818
- name: Windows_Logs
19-
path: ../../artifacts/logs/
19+
path: ../../artifacts/log/
2020
publishOnError: true

.azure/pipelines/tools/SetupTestEnvironment.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ param(
55

66
if (!($DumpFolder))
77
{
8-
$DumpFolder = "$PSScriptRoot\..\..\..\artifacts\logs\dumps"
8+
$DumpFolder = "$PSScriptRoot\..\..\..\artifacts\log\dumps"
99
}
1010
if (!(Test-Path $DumpFolder))
1111
{

eng/tools/XplatPackageSigner/sign-packages.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ IF "%DirToSign%"=="" (
1212
SET RepoRoot=%~dp0..\..\..
1313
SET Project=%~dp0\XplatPackageSigner.proj
1414

15-
%RepoRoot%\build.cmd -NoRestore -projects %project% /p:DirectoryToSign=%DirToSign% /bl:%RepoRoot%\artifacts\logs\XplatSign.binlog
15+
%RepoRoot%\build.cmd -NoRestore -projects %project% /p:DirectoryToSign=%DirToSign% /bl:%RepoRoot%\artifacts\log\XplatSign.binlog

src/Installers/Windows/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ try {
3838
-ci:$ci `
3939
-sign `
4040
-BuildInstallers `
41-
"-bl:$repoRoot/artifacts/logs/installers.msbuild.binlog" `
41+
"-bl:$repoRoot/artifacts/log/installers.msbuild.binlog" `
4242
@msbuildargs `
4343
@AdditionalArgs
4444
}

src/SignalR/clients/ts/FunctionalTests/func.jest.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ module.exports = {
1010
"ts-jest": {
1111
"tsConfigFile": "../tsconfig.jest.json",
1212
"skipBabel": true,
13-
13+
1414
// Needed in order to properly process the JS files
1515
// We run 'tsc --noEmit' to get TS diagnostics before the test instead
1616
"enableTsDiagnostics": false,
1717
}
1818
},
1919
reporters: [
2020
"default",
21-
["../common/node_modules/jest-junit/index.js", { "output": "../../../../../artifacts/logs/" + `${process.platform}` + ".node.functional.junit.xml" }]
21+
["../common/node_modules/jest-junit/index.js", { "output": "../../../../../artifacts/log/" + `${process.platform}` + ".node.functional.junit.xml" }]
2222
],
2323
transform: {
2424
"^.+\\.(jsx?|tsx?)$": "../common/node_modules/ts-jest"

src/SignalR/clients/ts/FunctionalTests/scripts/karma.base.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ try {
4848
reporters: [...defaultReporters, ...(config.reporters || [])],
4949

5050
junitReporter: {
51-
outputDir: "../../../../../artifacts/logs",
51+
outputDir: "../../../../../artifacts/log",
5252
outputFile: `${process.platform}` + ".functionaltest.junit.xml",
5353
},
5454
});

src/SignalR/clients/ts/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
},
1212
reporters: [
1313
"default",
14-
["./common/node_modules/jest-junit/index.js", { "output": "../../../../artifacts/logs/" + `${process.platform}` + ".signalr.junit.xml" }]
14+
["./common/node_modules/jest-junit/index.js", { "output": "../../../../artifacts/log/" + `${process.platform}` + ".signalr.junit.xml" }]
1515
],
1616
transform: {
1717
"^.+\\.tsx?$": "./common/node_modules/ts-jest"

0 commit comments

Comments
 (0)