Merge pull request #1187 from dotnet/brthor/test_env_var
Add back Test Env Var so tests are published to the artifacts folder.
This commit is contained in:
commit
be4629a6a6
2 changed files with 6 additions and 2 deletions
|
@ -18,6 +18,9 @@ $PackageDir = "$RepoRoot\artifacts\packages\dnvm"
|
|||
$TestBinRoot = "$RepoRoot\artifacts\tests"
|
||||
$TestPackageDir = "$TestBinRoot\packages"
|
||||
|
||||
$env:TEST_ROOT = "$OutputDir\tests"
|
||||
$env:TEST_ARTIFACTS = "$env:TEST_ROOT\artifacts"
|
||||
|
||||
$env:ReleaseSuffix = "beta"
|
||||
$env:Channel = "$env:ReleaseSuffix"
|
||||
|
||||
|
|
|
@ -19,13 +19,14 @@ export TFM=dnxcore50
|
|||
export REPOROOT=$(cd $COMMONDIR/../.. && pwd)
|
||||
export OUTPUT_ROOT=$REPOROOT/artifacts/$RID
|
||||
export STAGE1_DIR=$OUTPUT_ROOT/stage1
|
||||
export STAGE1_COMPILATION_DIR=$OUTPUT_ROOT/stage1compilation
|
||||
export STAGE2_DIR=$OUTPUT_ROOT/stage2
|
||||
export STAGE2_COMPILATION_DIR=$OUTPUT_ROOT/stage2compilation
|
||||
export HOST_DIR=$OUTPUT_ROOT/corehost
|
||||
export TEST_BIN_ROOT="$REPOROOT/artifacts/tests"
|
||||
export TEST_PACKAGE_DIR="$TEST_BIN_ROOT/packages"
|
||||
|
||||
export TEST_ROOT="$OUTPUT_ROOT/tests"
|
||||
export TEST_ARTIFACTS="$TEST_ROOT/artifacts"
|
||||
|
||||
export RELEASE_SUFFIX=beta
|
||||
export CHANNEL=$RELEASE_SUFFIX
|
||||
|
||||
|
|
Loading…
Reference in a new issue