Adjust timeouts in module_config.yaml

Signing package may take more then 10s while calling echo really
should take less then 60s ;-)

Change-Id: I1798981492d1467bb8b20099ea705b08ea9b0914
Reviewed-by: Liang Qi <liang.qi@qt.io>
Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
This commit is contained in:
Jędrzej Nowacki 2019-05-16 15:09:55 +02:00
parent b611936ca8
commit d932ac44df

View File

@ -42,6 +42,8 @@ build_instructions:
property: host.os property: host.os
not_equals_value: Windows not_equals_value: Windows
directory: "{{.InstallRoot}}/{{.AgentWorkingDir}}" directory: "{{.InstallRoot}}/{{.AgentWorkingDir}}"
maxTimeInSeconds: 1200
maxTimeBetweenOutput: 1200
- type: UploadArtifact - type: UploadArtifact
archiveDirectory: "{{.InstallRoot}}/{{.AgentWorkingDir}}" archiveDirectory: "{{.InstallRoot}}/{{.AgentWorkingDir}}"
transferType: UploadModuleBuildArtifact transferType: UploadModuleBuildArtifact
@ -50,7 +52,7 @@ build_instructions:
test_instructions: test_instructions:
- type: ExecuteCommand - type: ExecuteCommand
command: echo "hello world - test" command: echo "hello world - test"
maxTimeInSeconds: 6000 maxTimeInSeconds: 60
maxTimeBetweenOutput: 120 maxTimeBetweenOutput: 12
userMessageOnFailure: > userMessageOnFailure: >
Failed to call echo. Contact Liang then. Failed to call echo. Contact Liang then.