Fix mount command
Mount on Virtual machine uses NFS version 4 as default, and it was causing disk I/O errors when trying to access disk. Forcing the mount use NFS version 3. Change-Id: Ibc5958d8a7e71c463ffa9c3282344c08b2c5019a Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
This commit is contained in:
parent
b3cc89e81c
commit
0d9c92bfdf
@ -38,7 +38,7 @@ build_environment_axivion: &build_environment_axivion
|
||||
maxTimeBetweenOutput: 100
|
||||
userMessageOnFailure: "Create mount point for results failed"
|
||||
- type: ExecuteCommand
|
||||
command: ["sudo", "mount", "-o", "rw", "10.212.0.93:/data/axivion", "/data/axivion"]
|
||||
command: ["sudo", "mount", "-t", "nfs", "-o", "rw,nfsvers=3", "10.212.0.93:/data/axivion", "/data/axivion"]
|
||||
maxTimeInSeconds: 100
|
||||
maxTimeBetweenOutput: 100
|
||||
userMessageOnFailure: "Mount failed"
|
||||
|
Loading…
x
Reference in New Issue
Block a user