From 31673e84f4925cee9edfebf832e67202255ef23e Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 20 Apr 2018 10:57:53 -0700 Subject: [PATCH] Re-enable Windows dotnet-ci builds (#1978) * Re-enable Windows dotnet-ci builds --- build/buildpipeline/windows.groovy | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build/buildpipeline/windows.groovy b/build/buildpipeline/windows.groovy index 4b0a9ec8f1..3d5715bd45 100644 --- a/build/buildpipeline/windows.groovy +++ b/build/buildpipeline/windows.groovy @@ -1,2 +1,14 @@ @Library('dotnet-ci') _ +// 'node' indicates to Jenkins that the enclosed block runs on a node that matches +// the label 'windows-with-vs' +simpleNode('Windows.10.Enterprise.RS3.ASPNET') { + stage ('Checking out source') { + checkout scm + } + stage ('Build') { + def logFolder = getLogFolder() + def environment = "set ASPNETCORE_TEST_LOG_DIR=${WORKSPACE}\\${logFolder}" + bat "${environment}&.\\run.cmd -CI default-build" + } +}