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' - } -}