fix QTDIR paths for CI

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-07-02 10:07:19 +02:00 committed by Jakub
parent 85a3557f1e
commit 6683313c83
2 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,8 @@ pipeline {
NIMFLAGS = '--colors:off'
/* Verbosity of make targets */
V = "1"
/* Makefile assumes the compiler folder is included */
QTDIR = "/opt/qt/5.14.0/gcc_64"
/* Control output the filename */
STATUS_CLIENT_APPIMAGE = "pkg/${load('ci/lib.groovy').pkgFilename('linux', 'AppImage')}"
}

View File

@ -20,8 +20,8 @@ pipeline {
/* Disable colors in Nim compiler logs */
NIMFLAGS = '--colors:off'
/* Qt location is pre-defined */
QTDIR = '/usr/local/qt'
PATH = "${env.QTDIR}/clang_64/bin:${env.PATH}"
QTDIR = '/usr/local/qt/clang_64'
PATH = "${env.QTDIR}/bin:${env.PATH}"
/* Control output the filename */
STATUS_CLIENT_DMG = "pkg/${load('ci/lib.groovy').pkgFilename('macos', 'dmg')}"
}