From 3871c704aa94b45987d3598c86919e994bf9b767 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 7 Apr 2023 12:07:37 -0400 Subject: [PATCH] chore(windows/ci): move env var up in the list to be like other files --- ci/Jenkinsfile.windows | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 98049a3dd1..50062bdf7b 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -41,14 +41,15 @@ pipeline { MAKEFLAGS = "-j${utils.getProcCount()} V=${params.VERBOSE}" /* Disable colors in Nim compiler logs */ NIMFLAGS = '--colors:off' + /* Explicitly set the QT version */ + QTDIR = "/c/Qt/5.15.2/msvc2019_64" + PATH = "${env.QTDIR}/bin:${env.PATH}" /* Control output the filename */ STATUS_CLIENT_EXE = "pkg/${utils.pkgFilename(ext: 'exe', arch: getArch())}" /* 7zip archive filename */ STATUS_CLIENT_7Z = "pkg/${utils.pkgFilename(ext: '7z', arch: getArch())}" /* RFC 3161 timestamping URL for DigiCert */ WINDOWS_CODESIGN_TIMESTAMP_URL = 'http://timestamp.digicert.com' - QTDIR = "/c/Qt/5.15.2/msvc2019_64" - PATH = "${env.QTDIR}/bin:${env.PATH}" } stages {