Increased arm build leg timeout (#447)
* Increased arm build leg timeout * Add quotes around version filter
This commit is contained in:
Родитель
f19d35a6ed
Коммит
c0b3f4f732
|
@ -244,7 +244,7 @@
|
|||
}
|
||||
],
|
||||
"jobAuthorizationScope": "projectCollection",
|
||||
"jobTimeoutInMinutes": 60,
|
||||
"jobTimeoutInMinutes": 90,
|
||||
"jobCancelTimeoutInMinutes": 5,
|
||||
"repository": {
|
||||
"properties": {
|
||||
|
|
|
@ -17,10 +17,10 @@ platformList.each { platform ->
|
|||
def newJob = job(newJobName) {
|
||||
steps {
|
||||
if (hostOS == 'Windows_2016') {
|
||||
batchFile("powershell -NoProfile -Command .\\build-and-test.ps1 -Filter ${versionFilter}")
|
||||
batchFile("powershell -NoProfile -Command .\\build-and-test.ps1 -Filter \"${versionFilter}\"")
|
||||
}
|
||||
else {
|
||||
shell("docker build --rm -t testrunner -f ./test/Dockerfile.linux.testrunner . && docker run -v /var/run/docker.sock:/var/run/docker.sock testrunner powershell -File build-and-test.ps1 -Filter ${versionFilter}")
|
||||
shell("docker build --rm -t testrunner -f ./test/Dockerfile.linux.testrunner . && docker run -v /var/run/docker.sock:/var/run/docker.sock testrunner powershell -File build-and-test.ps1 -Filter \"${versionFilter}\"")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче