clean up vmr-build
This commit is contained in:
parent
7b74786a8f
commit
69d82ce342
1 changed files with 0 additions and 17 deletions
|
@ -31,11 +31,6 @@ parameters:
|
||||||
- name: runOnline
|
- name: runOnline
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
||||||
# Skip running the SDK content smoke-tests
|
|
||||||
- name: excludeSdkContentTests
|
|
||||||
type: boolean
|
|
||||||
default: true
|
|
||||||
|
|
||||||
# Name of a previous job (from the same template as this) whose output will be used to build this job
|
# Name of a previous job (from the same template as this) whose output will be used to build this job
|
||||||
# The SDK from its artifacts is copied to vmr/.dotnet
|
# The SDK from its artifacts is copied to vmr/.dotnet
|
||||||
- name: reuseBuildArtifactsFrom
|
- name: reuseBuildArtifactsFrom
|
||||||
|
@ -128,12 +123,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
||||||
|
|
||||||
- ${{ if ne(parameters.excludeSdkContentTests, 'true') }}:
|
|
||||||
- download: current
|
|
||||||
artifact: BlobArtifacts
|
|
||||||
patterns: '**/dotnet-sdk-+([0-9]).+([0-9]).+([0-9])?(-@(alpha|preview|rc|rtm)*)-linux-${{ parameters.architecture }}.tar.gz'
|
|
||||||
displayName: Download MSFT SDK
|
|
||||||
|
|
||||||
- ${{ if ne(parameters.reuseBuildArtifactsFrom, '') }}:
|
- ${{ if ne(parameters.reuseBuildArtifactsFrom, '') }}:
|
||||||
- download: current
|
- download: current
|
||||||
artifact: ${{ parameters.reuseBuildArtifactsFrom }}_${{ parameters.architecture }}_Artifacts
|
artifact: ${{ parameters.reuseBuildArtifactsFrom }}_${{ parameters.architecture }}_Artifacts
|
||||||
|
@ -192,12 +181,6 @@ jobs:
|
||||||
dockerEnvArgs="-e SMOKE_TESTS_EXCLUDE_OMNISHARP=${{ parameters.excludeOmniSharpTests }} -e SMOKE_TESTS_WARN_SDK_CONTENT_DIFFS=true -e SMOKE_TESTS_RUNNING_IN_CI=true"
|
dockerEnvArgs="-e SMOKE_TESTS_EXCLUDE_OMNISHARP=${{ parameters.excludeOmniSharpTests }} -e SMOKE_TESTS_WARN_SDK_CONTENT_DIFFS=true -e SMOKE_TESTS_RUNNING_IN_CI=true"
|
||||||
poisonArg=''
|
poisonArg=''
|
||||||
|
|
||||||
if [[ '${{ parameters.excludeSdkContentTests }}' != 'True' ]]; then
|
|
||||||
dockerVolumeArgs+=" -v $(Pipeline.Workspace)/BlobArtifacts/:/BlobArtifacts"
|
|
||||||
msftSdkTarballName=$(find "$(Pipeline.Workspace)/BlobArtifacts/" -name "dotnet-sdk-*-linux-${{ parameters.architecture }}.tar.gz" -exec basename {} \;)
|
|
||||||
dockerEnvArgs+=" -e SMOKE_TESTS_MSFT_SDK_TARBALL_PATH=/BlobArtifacts/$msftSdkTarballName"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ '${{ parameters.enablePoison }}' == 'True' ]]; then
|
if [[ '${{ parameters.enablePoison }}' == 'True' ]]; then
|
||||||
poisonArg='--poison'
|
poisonArg='--poison'
|
||||||
dockerEnvArgs+=" -e SMOKE_TESTS_WARN_POISON_DIFFS=true"
|
dockerEnvArgs+=" -e SMOKE_TESTS_WARN_POISON_DIFFS=true"
|
||||||
|
|
Loading…
Reference in a new issue