зеркало из
1
0
Форкнуть 0

Increased arm build leg timeout (#447)

* Increased arm build leg timeout

* Add quotes around version filter
This commit is contained in:
Michael Simons 2017-10-05 22:24:23 -05:00 коммит произвёл GitHub
Родитель f19d35a6ed
Коммит c0b3f4f732
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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}\"")
}
}
}