From 88b1cff27392487e224342d978781ad9b337d023 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 20 Mar 2018 12:04:13 -0700 Subject: [PATCH] No-op signalr dotnet-ci builds --- build/buildpipeline/linux.groovy | 10 ---------- build/buildpipeline/osx.groovy | 9 --------- build/buildpipeline/windows.groovy | 10 ---------- 3 files changed, 29 deletions(-) diff --git a/build/buildpipeline/linux.groovy b/build/buildpipeline/linux.groovy index 6bf3a44368..791d923d0c 100644 --- a/build/buildpipeline/linux.groovy +++ b/build/buildpipeline/linux.groovy @@ -1,11 +1 @@ @Library('dotnet-ci') _ - -simpleNode('Ubuntu16.04', 'latest-or-auto-docker') { - stage ('Checking out source') { - checkout scm - } - stage ('Build') { - def environment = 'export SIGNALR_TESTS_VERBOSE=1' - sh "${environment} && ./build.sh --ci" - } -} diff --git a/build/buildpipeline/osx.groovy b/build/buildpipeline/osx.groovy index c5d4c7d03a..4b0a9ec8f1 100644 --- a/build/buildpipeline/osx.groovy +++ b/build/buildpipeline/osx.groovy @@ -1,11 +1,2 @@ @Library('dotnet-ci') _ -simpleNode('OSX10.12','latest') { - stage ('Checking out source') { - checkout scm - } - stage ('Build') { - def environment = 'export SIGNALR_TESTS_VERBOSE=1' - sh "${environment} && ./build.sh --ci" - } -} diff --git a/build/buildpipeline/windows.groovy b/build/buildpipeline/windows.groovy index 8d26f313d4..4b0a9ec8f1 100644 --- a/build/buildpipeline/windows.groovy +++ b/build/buildpipeline/windows.groovy @@ -1,12 +1,2 @@ @Library('dotnet-ci') _ -// 'node' indicates to Jenkins that the enclosed block runs on a node that matches -// the label 'windows-with-vs' -simpleNode('Windows_NT','latest') { - stage ('Checking out source') { - checkout scm - } - stage ('Build') { - bat '.\\run.cmd -CI default-build' - } -}