Upload artifact logs for CI Test runs (#7251)
This commit is contained in:
parent
f888a37712
commit
1d2838ea2e
|
|
@ -291,6 +291,10 @@ jobs:
|
||||||
beforeBuild:
|
beforeBuild:
|
||||||
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1; & ./src/Servers/IIS/tools/update_schema.ps1"
|
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1; & ./src/Servers/IIS/tools/update_schema.ps1"
|
||||||
displayName: Setup IISExpress test certificates and schema
|
displayName: Setup IISExpress test certificates and schema
|
||||||
|
artifacts:
|
||||||
|
- name: Windows_Test_Logs
|
||||||
|
path: artifacts/logs/
|
||||||
|
publishOnError: true
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
parameters:
|
parameters:
|
||||||
condition: ne(variables['SkipTests'], 'true')
|
condition: ne(variables['SkipTests'], 'true')
|
||||||
|
|
@ -302,6 +306,10 @@ jobs:
|
||||||
beforeBuild:
|
beforeBuild:
|
||||||
- bash: "./eng/scripts/install-nginx-mac.sh"
|
- bash: "./eng/scripts/install-nginx-mac.sh"
|
||||||
displayName: Installing Nginx
|
displayName: Installing Nginx
|
||||||
|
artifacts:
|
||||||
|
- name: MacOS_Test_Logs
|
||||||
|
path: artifacts/logs/
|
||||||
|
publishOnError: true
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
parameters:
|
parameters:
|
||||||
condition: ne(variables['SkipTests'], 'true')
|
condition: ne(variables['SkipTests'], 'true')
|
||||||
|
|
@ -313,6 +321,10 @@ jobs:
|
||||||
beforeBuild:
|
beforeBuild:
|
||||||
- bash: "./eng/scripts/install-nginx-linux.sh"
|
- bash: "./eng/scripts/install-nginx-linux.sh"
|
||||||
displayName: Installing Nginx
|
displayName: Installing Nginx
|
||||||
|
artifacts:
|
||||||
|
- name: Linux_Test_Logs
|
||||||
|
path: artifacts/logs/
|
||||||
|
publishOnError: true
|
||||||
- template: jobs/iisintegration-job.yml
|
- template: jobs/iisintegration-job.yml
|
||||||
parameters:
|
parameters:
|
||||||
condition: ne(variables['SkipTests'], 'true')
|
condition: ne(variables['SkipTests'], 'true')
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,7 @@ jobs:
|
||||||
condition: always()
|
condition: always()
|
||||||
jobName: ANCM_${{ parameters.TestGroupName }}
|
jobName: ANCM_${{ parameters.TestGroupName }}
|
||||||
jobDisplayName: "Test: ANCM ${{ parameters.TestGroupName }}"
|
jobDisplayName: "Test: ANCM ${{ parameters.TestGroupName }}"
|
||||||
|
artifacts:
|
||||||
|
- name: IIS_${{ parameters.TestGroupName }}_Logs
|
||||||
|
path: artifacts/logs/
|
||||||
|
publishOnError: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue