Update log directory (#10301)
* Update log directory This will now include functional test logs * There were a few more places logs was used instead of log
This commit is contained in:
parent
a05d555f11
commit
818dc3b74a
|
|
@ -46,14 +46,14 @@ jobs:
|
||||||
# if they have already been signed. This results in slower builds due to re-submitting the same .nupkg many times for signing.
|
# if they have already been signed. This results in slower builds due to re-submitting the same .nupkg many times for signing.
|
||||||
# The sign settings have been configured to
|
# The sign settings have been configured to
|
||||||
|
|
||||||
- script: ./eng/scripts/cibuild.cmd -arch x64 /p:DisableCodeSigning=true /bl:artifacts/logs/build.x64.binlog
|
- script: ./eng/scripts/cibuild.cmd -arch x64 /p:DisableCodeSigning=true /bl:artifacts/log/build.x64.binlog
|
||||||
displayName: Build x64
|
displayName: Build x64
|
||||||
# TODO: make it possible to build for one Windows architecture at a time
|
# TODO: make it possible to build for one Windows architecture at a time
|
||||||
# This is going to actually build x86 native assets. See https://github.com/aspnet/AspNetCore/issues/7196
|
# This is going to actually build x86 native assets. See https://github.com/aspnet/AspNetCore/issues/7196
|
||||||
|
|
||||||
# Build the x86 shared framework
|
# Build the x86 shared framework
|
||||||
# Set DisableSignCheck because we'll run sign check in an explicit step after installers build
|
# Set DisableSignCheck because we'll run sign check in an explicit step after installers build
|
||||||
- script: ./eng/scripts/cibuild.cmd -arch x86 -NoRestore /t:BuildSharedFx /p:DisableCodeSigning=true /bl:artifacts/logs/build.x86.binlog
|
- script: ./eng/scripts/cibuild.cmd -arch x86 -NoRestore /t:BuildSharedFx /p:DisableCodeSigning=true /bl:artifacts/log/build.x86.binlog
|
||||||
displayName: Build x86
|
displayName: Build x86
|
||||||
|
|
||||||
# This is in a separate build step with -forceCoreMsbuild to workaround MAX_PATH limitations - https://github.com/Microsoft/msbuild/issues/53
|
# This is in a separate build step with -forceCoreMsbuild to workaround MAX_PATH limitations - https://github.com/Microsoft/msbuild/issues/53
|
||||||
|
|
@ -67,7 +67,7 @@ jobs:
|
||||||
# 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,
|
# 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,
|
||||||
# consider running code-signing inline with the other previous steps.
|
# consider running code-signing inline with the other previous steps.
|
||||||
# Sign check is disabled because it is run in a separate step below, after installers are built.
|
# Sign check is disabled because it is run in a separate step below, after installers are built.
|
||||||
- script: ./build.cmd -ci -sign -NoRestore /t:CodeSign /p:SignType=$(_SignType) /p:DisableSignCheck=true /bl:artifacts/logs/build.codesign.binlog
|
- script: ./build.cmd -ci -sign -NoRestore /t:CodeSign /p:SignType=$(_SignType) /p:DisableSignCheck=true /bl:artifacts/log/build.codesign.binlog
|
||||||
displayName: Code sign packages
|
displayName: Code sign packages
|
||||||
|
|
||||||
# Windows installers bundle both x86 and x64 assets
|
# Windows installers bundle both x86 and x64 assets
|
||||||
|
|
@ -75,7 +75,7 @@ jobs:
|
||||||
displayName: Build Installers
|
displayName: Build Installers
|
||||||
|
|
||||||
# Run sign check to verify everything was code signed.
|
# Run sign check to verify everything was code signed.
|
||||||
- script: ./build.cmd -ci -sign -NoRestore /t:SignCheck /p:SignType=$(_SignType) /bl:artifacts/logs/build.signcheck.binlog
|
- script: ./build.cmd -ci -sign -NoRestore /t:SignCheck /p:SignType=$(_SignType) /bl:artifacts/log/build.signcheck.binlog
|
||||||
displayName: Run sign check
|
displayName: Run sign check
|
||||||
condition: eq(variables['_SignType'], 'real')
|
condition: eq(variables['_SignType'], 'real')
|
||||||
|
|
||||||
|
|
@ -89,7 +89,7 @@ jobs:
|
||||||
- name: Windows_Installers
|
- name: Windows_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Windows_Logs
|
- name: Windows_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
# Build Windows ARM
|
# Build Windows ARM
|
||||||
|
|
@ -100,7 +100,7 @@ jobs:
|
||||||
jobDisplayName: "Build: Windows ARM"
|
jobDisplayName: "Build: Windows ARM"
|
||||||
agentOs: Windows
|
agentOs: Windows
|
||||||
buildScript: ./eng/scripts/cibuild.cmd
|
buildScript: ./eng/scripts/cibuild.cmd
|
||||||
buildArgs: -arch arm -NoBuildNodeJS -NoBuildJava /p:SignType=$(_SignType) /bl:artifacts/logs/build.win-arm.binlog
|
buildArgs: -arch arm -NoBuildNodeJS -NoBuildJava /p:SignType=$(_SignType) /bl:artifacts/log/build.win-arm.binlog
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
installJdk: false
|
installJdk: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
|
|
@ -115,7 +115,7 @@ jobs:
|
||||||
- name: Windows_arm_Installers
|
- name: Windows_arm_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Windows_arm_Logs
|
- name: Windows_arm_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
# Build MacOS
|
# Build MacOS
|
||||||
|
|
@ -125,7 +125,7 @@ jobs:
|
||||||
jobDisplayName: "Build: macOS"
|
jobDisplayName: "Build: macOS"
|
||||||
agentOs: macOs
|
agentOs: macOs
|
||||||
buildScript: ./eng/scripts/cibuild.sh
|
buildScript: ./eng/scripts/cibuild.sh
|
||||||
buildArgs: --no-build-nodejs --no-build-java /bl:artifacts/logs/build.macos.binlog
|
buildArgs: --no-build-nodejs --no-build-java /bl:artifacts/log/build.macos.binlog
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -140,7 +140,7 @@ jobs:
|
||||||
- name: MacOS_x64_Installers
|
- name: MacOS_x64_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: MacOS_x64_Logs
|
- name: MacOS_x64_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -154,7 +154,7 @@ jobs:
|
||||||
agentOs: Linux
|
agentOs: Linux
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
steps:
|
steps:
|
||||||
- script: ./eng/scripts/cibuild.sh --arch x64 --no-build-nodejs --no-build-java /bl:artifacts/logs/build.lin-x64.binlog
|
- script: ./eng/scripts/cibuild.sh --arch x64 --no-build-nodejs --no-build-java /bl:artifacts/log/build.lin-x64.binlog
|
||||||
displayName: Run cibuild.sh
|
displayName: Run cibuild.sh
|
||||||
- script: |
|
- script: |
|
||||||
rm -rf .dotnet/
|
rm -rf .dotnet/
|
||||||
|
|
@ -168,7 +168,7 @@ jobs:
|
||||||
/t:BuildSharedFx \
|
/t:BuildSharedFx \
|
||||||
/p:BuildRuntimeArchive=false \
|
/p:BuildRuntimeArchive=false \
|
||||||
/p:LinuxInstallerType=deb \
|
/p:LinuxInstallerType=deb \
|
||||||
/bl:artifacts/logs/build.deb.binlog
|
/bl:artifacts/log/build.deb.binlog
|
||||||
displayName: Build Debian installers
|
displayName: Build Debian installers
|
||||||
- script: |
|
- script: |
|
||||||
rm -rf .dotnet/
|
rm -rf .dotnet/
|
||||||
|
|
@ -182,7 +182,7 @@ jobs:
|
||||||
/t:BuildSharedFx \
|
/t:BuildSharedFx \
|
||||||
/p:BuildRuntimeArchive=false \
|
/p:BuildRuntimeArchive=false \
|
||||||
/p:LinuxInstallerType=rpm \
|
/p:LinuxInstallerType=rpm \
|
||||||
/bl:artifacts/logs/build.rpm.binlog
|
/bl:artifacts/log/build.rpm.binlog
|
||||||
displayName: Build RPM installers
|
displayName: Build RPM installers
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -197,7 +197,7 @@ jobs:
|
||||||
- name: Linux_x64_Installers
|
- name: Linux_x64_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Linux_x64_Logs
|
- name: Linux_x64_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -210,7 +210,7 @@ jobs:
|
||||||
jobDisplayName: "Build: Linux ARM"
|
jobDisplayName: "Build: Linux ARM"
|
||||||
agentOs: Linux
|
agentOs: Linux
|
||||||
buildScript: ./eng/scripts/cibuild.sh
|
buildScript: ./eng/scripts/cibuild.sh
|
||||||
buildArgs: --arch arm --no-build-nodejs --no-build-java /bl:artifacts/logs/build.lin-arm.binlog
|
buildArgs: --arch arm --no-build-nodejs --no-build-java /bl:artifacts/log/build.lin-arm.binlog
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -225,7 +225,7 @@ jobs:
|
||||||
- name: Linux_arm_Installers
|
- name: Linux_arm_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Linux_arm_Logs
|
- name: Linux_arm_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -238,7 +238,7 @@ jobs:
|
||||||
jobDisplayName: "Build: Linux ARM64"
|
jobDisplayName: "Build: Linux ARM64"
|
||||||
agentOs: Linux
|
agentOs: Linux
|
||||||
buildScript: ./eng/scripts/cibuild.sh
|
buildScript: ./eng/scripts/cibuild.sh
|
||||||
buildArgs: --arch arm64 --no-build-nodejs --no-build-java /bl:artifacts/logs/build.arm64.binlog
|
buildArgs: --arch arm64 --no-build-nodejs --no-build-java /bl:artifacts/log/build.arm64.binlog
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -253,7 +253,7 @@ jobs:
|
||||||
- name: Linux_arm64_Installers
|
- name: Linux_arm64_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Linux_arm64_Logs
|
- name: Linux_arm64_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -266,7 +266,7 @@ jobs:
|
||||||
jobDisplayName: "Build: Linux Musl x64"
|
jobDisplayName: "Build: Linux Musl x64"
|
||||||
agentOs: Linux
|
agentOs: Linux
|
||||||
buildScript: ./dockerbuild.sh alpine
|
buildScript: ./dockerbuild.sh alpine
|
||||||
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
|
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
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -281,7 +281,7 @@ jobs:
|
||||||
- name: Linux_musl_x64_Installers
|
- name: Linux_musl_x64_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Linux_musl_x64_Logs
|
- name: Linux_musl_x64_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -294,7 +294,7 @@ jobs:
|
||||||
jobDisplayName: "Build: Linux Musl ARM64"
|
jobDisplayName: "Build: Linux Musl ARM64"
|
||||||
agentOs: Linux
|
agentOs: Linux
|
||||||
buildScript: ./dockerbuild.sh ubuntu-alpine37
|
buildScript: ./dockerbuild.sh ubuntu-alpine37
|
||||||
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
|
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
|
||||||
installNodeJs: false
|
installNodeJs: false
|
||||||
afterBuild:
|
afterBuild:
|
||||||
# Remove packages that are not rid-specific.
|
# Remove packages that are not rid-specific.
|
||||||
|
|
@ -309,7 +309,7 @@ jobs:
|
||||||
- name: Linux_musl_arm64_Installers
|
- name: Linux_musl_arm64_Installers
|
||||||
path: artifacts/installers/
|
path: artifacts/installers/
|
||||||
- name: Linux_musl_arm64_Logs
|
- name: Linux_musl_arm64_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
- template: jobs/codesign-xplat.yml
|
- template: jobs/codesign-xplat.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
@ -334,7 +334,7 @@ jobs:
|
||||||
continueOnError: true
|
continueOnError: true
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Windows_Test_Logs
|
- name: Windows_Test_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
|
|
@ -351,7 +351,7 @@ jobs:
|
||||||
displayName: Build Repo
|
displayName: Build Repo
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Windows_Test_Templates_Logs
|
- name: Windows_Test_Templates_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
|
|
@ -372,7 +372,7 @@ jobs:
|
||||||
continueOnError: true
|
continueOnError: true
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: MacOS_Test_Logs
|
- name: MacOS_Test_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
|
|
@ -395,5 +395,5 @@ jobs:
|
||||||
continueOnError: true
|
continueOnError: true
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Linux_Test_Logs
|
- name: Linux_Test_Logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
|
||||||
|
|
@ -15,11 +15,11 @@ jobs:
|
||||||
agentOs: Windows
|
agentOs: Windows
|
||||||
timeoutInMinutes: 240
|
timeoutInMinutes: 240
|
||||||
steps:
|
steps:
|
||||||
- script: .\build.cmd -all -ci /t:Helix /p:IsHelixJob=true /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\logs\SendToHelix.binlog
|
- script: .\build.cmd -all -ci /t:Helix /p:IsHelixJob=true /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\SendToHelix.binlog
|
||||||
displayName: Run build.cmd helix target
|
displayName: Run build.cmd helix target
|
||||||
env:
|
env:
|
||||||
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
|
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Helix_logs
|
- name: Helix_logs
|
||||||
path: artifacts/logs/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
|
||||||
|
|
@ -210,7 +210,7 @@ jobs:
|
||||||
condition: always()
|
condition: always()
|
||||||
inputs:
|
inputs:
|
||||||
testRunner: junit
|
testRunner: junit
|
||||||
testResultsFiles: '**/artifacts/logs/**/*.junit.xml'
|
testResultsFiles: '**/artifacts/log/**/*.junit.xml'
|
||||||
buildConfiguration: $(BuildConfiguration)
|
buildConfiguration: $(BuildConfiguration)
|
||||||
buildPlatform: $(AgentOsName)
|
buildPlatform: $(AgentOsName)
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
|
|
|
||||||
|
|
@ -16,5 +16,5 @@ jobs:
|
||||||
jobDisplayName: "SignalR Daily Tests"
|
jobDisplayName: "SignalR Daily Tests"
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Windows_Logs
|
- name: Windows_Logs
|
||||||
path: ../../artifacts/logs/
|
path: ../../artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ param(
|
||||||
|
|
||||||
if (!($DumpFolder))
|
if (!($DumpFolder))
|
||||||
{
|
{
|
||||||
$DumpFolder = "$PSScriptRoot\..\..\..\artifacts\logs\dumps"
|
$DumpFolder = "$PSScriptRoot\..\..\..\artifacts\log\dumps"
|
||||||
}
|
}
|
||||||
if (!(Test-Path $DumpFolder))
|
if (!(Test-Path $DumpFolder))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
<ArtifactsNonShippingPackagesDir>$(ArtifactsPackagesDir)NonShipping\</ArtifactsNonShippingPackagesDir>
|
<ArtifactsNonShippingPackagesDir>$(ArtifactsPackagesDir)NonShipping\</ArtifactsNonShippingPackagesDir>
|
||||||
<InstallersOutputPath>$(ArtifactsDir)installers\$(Configuration)\</InstallersOutputPath>
|
<InstallersOutputPath>$(ArtifactsDir)installers\$(Configuration)\</InstallersOutputPath>
|
||||||
<VisualStudioSetupOutputPath>$(ArtifactsDir)VSSetup\$(Configuration)\</VisualStudioSetupOutputPath>
|
<VisualStudioSetupOutputPath>$(ArtifactsDir)VSSetup\$(Configuration)\</VisualStudioSetupOutputPath>
|
||||||
|
<LogOutputDir>$(ArtifactsDir)log\</LogOutputDir>
|
||||||
|
|
||||||
<SignCheckExclusionsFile>$(RepoRoot)eng\signcheck.exclusions.txt</SignCheckExclusionsFile>
|
<SignCheckExclusionsFile>$(RepoRoot)eng\signcheck.exclusions.txt</SignCheckExclusionsFile>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,4 +12,4 @@ IF "%DirToSign%"=="" (
|
||||||
SET RepoRoot=%~dp0..\..\..
|
SET RepoRoot=%~dp0..\..\..
|
||||||
SET Project=%~dp0\XplatPackageSigner.proj
|
SET Project=%~dp0\XplatPackageSigner.proj
|
||||||
|
|
||||||
%RepoRoot%\build.cmd -NoRestore -projects %project% /p:DirectoryToSign=%DirToSign% /bl:%RepoRoot%\artifacts\logs\XplatSign.binlog
|
%RepoRoot%\build.cmd -NoRestore -projects %project% /p:DirectoryToSign=%DirToSign% /bl:%RepoRoot%\artifacts\log\XplatSign.binlog
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ try {
|
||||||
-ci:$ci `
|
-ci:$ci `
|
||||||
-sign `
|
-sign `
|
||||||
-BuildInstallers `
|
-BuildInstallers `
|
||||||
"-bl:$repoRoot/artifacts/logs/installers.msbuild.binlog" `
|
"-bl:$repoRoot/artifacts/log/installers.msbuild.binlog" `
|
||||||
@msbuildargs `
|
@msbuildargs `
|
||||||
@AdditionalArgs
|
@AdditionalArgs
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ module.exports = {
|
||||||
"ts-jest": {
|
"ts-jest": {
|
||||||
"tsConfigFile": "../tsconfig.jest.json",
|
"tsConfigFile": "../tsconfig.jest.json",
|
||||||
"skipBabel": true,
|
"skipBabel": true,
|
||||||
|
|
||||||
// Needed in order to properly process the JS files
|
// Needed in order to properly process the JS files
|
||||||
// We run 'tsc --noEmit' to get TS diagnostics before the test instead
|
// We run 'tsc --noEmit' to get TS diagnostics before the test instead
|
||||||
"enableTsDiagnostics": false,
|
"enableTsDiagnostics": false,
|
||||||
|
|
@ -18,7 +18,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
reporters: [
|
reporters: [
|
||||||
"default",
|
"default",
|
||||||
["../common/node_modules/jest-junit/index.js", { "output": "../../../../../artifacts/logs/" + `${process.platform}` + ".node.functional.junit.xml" }]
|
["../common/node_modules/jest-junit/index.js", { "output": "../../../../../artifacts/log/" + `${process.platform}` + ".node.functional.junit.xml" }]
|
||||||
],
|
],
|
||||||
transform: {
|
transform: {
|
||||||
"^.+\\.(jsx?|tsx?)$": "../common/node_modules/ts-jest"
|
"^.+\\.(jsx?|tsx?)$": "../common/node_modules/ts-jest"
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ try {
|
||||||
reporters: [...defaultReporters, ...(config.reporters || [])],
|
reporters: [...defaultReporters, ...(config.reporters || [])],
|
||||||
|
|
||||||
junitReporter: {
|
junitReporter: {
|
||||||
outputDir: "../../../../../artifacts/logs",
|
outputDir: "../../../../../artifacts/log",
|
||||||
outputFile: `${process.platform}` + ".functionaltest.junit.xml",
|
outputFile: `${process.platform}` + ".functionaltest.junit.xml",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
reporters: [
|
reporters: [
|
||||||
"default",
|
"default",
|
||||||
["./common/node_modules/jest-junit/index.js", { "output": "../../../../artifacts/logs/" + `${process.platform}` + ".signalr.junit.xml" }]
|
["./common/node_modules/jest-junit/index.js", { "output": "../../../../artifacts/log/" + `${process.platform}` + ".signalr.junit.xml" }]
|
||||||
],
|
],
|
||||||
transform: {
|
transform: {
|
||||||
"^.+\\.tsx?$": "./common/node_modules/ts-jest"
|
"^.+\\.tsx?$": "./common/node_modules/ts-jest"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue