提交 1c4205ac 编写于 作者: J Jared Parsons 提交者: Jared Parsons

Fix Groovy batch arguments

Makes two changes to our groovy arguments

1. Prefer - over / which will let us remove our hacky argument change
legacy script.
1. Use the positive -testDesktop over -skipCoreClr verbs
上级 6b0ab1b4
...@@ -62,7 +62,7 @@ commitPullList.each { isPr -> ...@@ -62,7 +62,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description("Windows ${configuration} tests on ${buildTarget}") description("Windows ${configuration} tests on ${buildTarget}")
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '/debug' : '/release'} ${(buildTarget == 'unit32') ? '/test32' : '/test64'} /skipCoreClrTests""") batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} ${(buildTarget == 'unit32') ? '-test32' : '-test64'} -testDesktop""")
} }
} }
...@@ -82,7 +82,7 @@ commitPullList.each { isPr -> ...@@ -82,7 +82,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description("Windows CoreCLR unit tests") description("Windows CoreCLR unit tests")
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '/debug' : '/release'} /skipDesktopTests""") batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testCoreClr""")
} }
} }
...@@ -151,7 +151,7 @@ commitPullList.each { isPr -> ...@@ -151,7 +151,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description('Determinism tests') description('Determinism tests')
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd /testDeterminism""") batchFile(""".\\build\\scripts\\cibuild.cmd -testDeterminism""")
} }
} }
...@@ -167,7 +167,7 @@ commitPullList.each { isPr -> ...@@ -167,7 +167,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description('Build correctness tests') description('Build correctness tests')
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd /testBuildCorrectness""") batchFile(""".\\build\\scripts\\cibuild.cmd -testBuildCorrectness""")
} }
} }
...@@ -183,7 +183,7 @@ commitPullList.each { isPr -> ...@@ -183,7 +183,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description('perf test correctness') description('perf test correctness')
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd /testPerfCorrectness""") batchFile(""".\\build\\scripts\\cibuild.cmd -testPerfCorrectness""")
} }
} }
...@@ -217,7 +217,7 @@ commitPullList.each { isPr -> ...@@ -217,7 +217,7 @@ commitPullList.each { isPr ->
def myJob = job(jobName) { def myJob = job(jobName) {
description("Windows ${configuration} tests on ${buildTarget}") description("Windows ${configuration} tests on ${buildTarget}")
steps { steps {
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '/debug' : '/release'} /testVsi""") batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testVsi""")
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册