fix QTDIR paths for CI
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
85a3557f1e
commit
6683313c83
|
@ -26,6 +26,8 @@ pipeline {
|
||||||
NIMFLAGS = '--colors:off'
|
NIMFLAGS = '--colors:off'
|
||||||
/* Verbosity of make targets */
|
/* Verbosity of make targets */
|
||||||
V = "1"
|
V = "1"
|
||||||
|
/* Makefile assumes the compiler folder is included */
|
||||||
|
QTDIR = "/opt/qt/5.14.0/gcc_64"
|
||||||
/* Control output the filename */
|
/* Control output the filename */
|
||||||
STATUS_CLIENT_APPIMAGE = "pkg/${load('ci/lib.groovy').pkgFilename('linux', 'AppImage')}"
|
STATUS_CLIENT_APPIMAGE = "pkg/${load('ci/lib.groovy').pkgFilename('linux', 'AppImage')}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,8 +20,8 @@ pipeline {
|
||||||
/* Disable colors in Nim compiler logs */
|
/* Disable colors in Nim compiler logs */
|
||||||
NIMFLAGS = '--colors:off'
|
NIMFLAGS = '--colors:off'
|
||||||
/* Qt location is pre-defined */
|
/* Qt location is pre-defined */
|
||||||
QTDIR = '/usr/local/qt'
|
QTDIR = '/usr/local/qt/clang_64'
|
||||||
PATH = "${env.QTDIR}/clang_64/bin:${env.PATH}"
|
PATH = "${env.QTDIR}/bin:${env.PATH}"
|
||||||
/* Control output the filename */
|
/* Control output the filename */
|
||||||
STATUS_CLIENT_DMG = "pkg/${load('ci/lib.groovy').pkgFilename('macos', 'dmg')}"
|
STATUS_CLIENT_DMG = "pkg/${load('ci/lib.groovy').pkgFilename('macos', 'dmg')}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue