CI: Increase QNX qemu startup timeout

For some reason starting of qemu randomly fails in the given timeout.
Set it to reasonably large amount so that we can rule out issues with
qemu itself. Also increase script timeout less than what coin gives
for the script to run se we should see if script bails out and is not
stuck.

Pick-to: 6.2 6.3
Change-Id: I37c7ec636f154955c6472d5e9d0fa92bb5bb457f
Reviewed-by: Toni Saario <toni.saario@qt.io>
This commit is contained in:
Pasi Petäjäjärvi 2022-03-30 11:33:37 +03:00
parent 344e0e7141
commit ece174c50f

View File

@ -6,7 +6,7 @@ instructions:
fileContents: | fileContents: |
#!/bin/bash #!/bin/bash
RESULT=1 # 0 upon success RESULT=1 # 0 upon success
TIMEOUT=120 TIMEOUT=240
COUNT=0 COUNT=0
QEMUPID=0 QEMUPID=0
QEMUIPADDR="{{.Env.QNX_QEMU_IPADDR}}" QEMUIPADDR="{{.Env.QNX_QEMU_IPADDR}}"
@ -61,7 +61,7 @@ instructions:
directory: "{{.Env.QNX_QEMU}}" directory: "{{.Env.QNX_QEMU}}"
- type: ExecuteCommand - type: ExecuteCommand
command: "{{.Env.QNX_QEMU}}/start_qnx_qemu.sh" command: "{{.Env.QNX_QEMU}}/start_qnx_qemu.sh"
maxTimeInSeconds: 100 maxTimeInSeconds: 300
maxTimeBetweenOutput: 100 maxTimeBetweenOutput: 100
userMessageOnFailure: > userMessageOnFailure: >
Failed to start QNX qemu, check logs. Failed to start QNX qemu, check logs.