Skip to content

Commit 889c3d0

Browse files
author
Vaughn Dice
authored
Merge pull request #300 from vdice/disable-windows-agent
ref(Jenkinsfile): disable win agent
2 parents 90df5f4 + 008615a commit 889c3d0

1 file changed

Lines changed: 16 additions & 14 deletions

File tree

Jenkinsfile

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,22 @@ def bootstrap = { String node ->
3333
}
3434
}
3535

36-
node(windows) {
37-
def gopath = pwd() + "\\gopath"
38-
env.GOPATH = gopath
39-
def workdir = gopath + "\\src\\github.com\\deis\\workflow-cli"
40-
41-
dir(workdir) {
42-
stage 'Checkout Windows'
43-
checkout scm
44-
stage 'Install Windows'
45-
bootstrap windows
46-
stage 'Test Windows'
47-
bat pscmd('.\\make test')
48-
}
49-
}
36+
// Disabling until we have a more sustainable Windows Jenkins Agent plan
37+
// See https://github.com/deis/jenkins-jobs/issues/351
38+
// node(windows) {
39+
// def gopath = pwd() + "\\gopath"
40+
// env.GOPATH = gopath
41+
// def workdir = gopath + "\\src\\github.com\\deis\\workflow-cli"
42+
//
43+
// dir(workdir) {
44+
// stage 'Checkout Windows'
45+
// checkout scm
46+
// stage 'Install Windows'
47+
// bootstrap windows
48+
// stage 'Test Windows'
49+
// bat pscmd('.\\make test')
50+
// }
51+
// }
5052

5153
stage 'Git Info'
5254
node(linux) {

0 commit comments

Comments
 (0)