fix(ci): prefix PATH with correct Go compiler path
Otherwise we end up with weird errors like: ``` status-go/go.mod:5: unknown directive: toolchain ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
fdf47c4c21
commit
99d2f6e690
|
@ -67,7 +67,8 @@ pipeline {
|
|||
MAKEFLAGS = "-j4 V=${params.VERBOSE}"
|
||||
/* WARNING: Qt 5.15.8 installed via Brew. */
|
||||
QTDIR = '/opt/homebrew/opt/qt@5'
|
||||
PATH = "${env.QTDIR}/bin:${env.PATH}"
|
||||
/* Enforce Go version installed infra-role-golang. */
|
||||
PATH = "${env.QTDIR}/bin:/usr/local/go/bin:${env.PATH}"
|
||||
/* Avoid weird bugs caused by stale cache. */
|
||||
QML_DISABLE_DISK_CACHE = "true"
|
||||
/* Control output the filename */
|
||||
|
|
Loading…
Reference in New Issue