From 99e6f0c480232fc9a55667151c35fabaea8497b5 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Fri, 16 Apr 2021 10:57:51 +0300 Subject: Provisioning: Upgrade MSVC 2019 version to 16.9.4 Task-number: QTQAINFRA-4117 Change-Id: Iefb5c8b97b3f56d9cdb358dbbf70d4c9de1b7d1b Reviewed-by: Qt CI Bot Reviewed-by: Alexandru Croitor (cherry picked from commit 9200ee73842ba62aa8eeec882de6645d5fe69548) Reviewed-by: Qt Cherry-pick Bot --- .../common/windows/update-msvc2019.ps1 | 12 ++++---- .../qtci-windows-10-x86_64/05-msvc2019.ps1 | 36 ++++++++++++++++++++++ 2 files changed, 42 insertions(+), 6 deletions(-) create mode 100644 coin/provisioning/qtci-windows-10-x86_64/05-msvc2019.ps1 diff --git a/coin/provisioning/common/windows/update-msvc2019.ps1 b/coin/provisioning/common/windows/update-msvc2019.ps1 index 0b0f384d..c53fac05 100644 --- a/coin/provisioning/common/windows/update-msvc2019.ps1 +++ b/coin/provisioning/common/windows/update-msvc2019.ps1 @@ -1,6 +1,6 @@ ############################################################################ ## -## Copyright (C) 2020 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the provisioning scripts of the Qt Toolkit. @@ -37,13 +37,13 @@ # NOTE! Visual Studio is pre-installed to tier 1 image so this script won't install the whole Visual Studio. See ../../../pre-provisioning/qtci-windows-10-x86_64/msvc2019.txt # MSVC 2019 online installers can be found from here https://docs.microsoft.com/en-us/visualstudio/releases/2019/history#installing-an-earlier-release -$version = "16_7_5" +$version = "16_9_4" $urlCache_vsInstaller = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msvc\vs2019_Professional_$version.exe" -$urlOfficial_vsInstaller = "https://download.visualstudio.microsoft.com/download/pr/e8bc3741-cb70-42aa-9b4e-2bd497de85dd/74b4e599138d5b5824d87ee657b78cbdeb3716f58a9645047e53bb5f68131516/vs_Professional.exe" -$sha1_vsInstaller = "70062274c1ae79f5f0f7cb91192347abc1ebcb00" +$urlOfficial_vsInstaller = "https://download.visualstudio.microsoft.com/download/pr/3105fcfe-e771-41d6-9a1c-fc971e7d03a7/d60c42571053950bf742db19e30430f76354c95af06afb1364d5b2aab620f4e5/vs_Professional.exe" +$sha1_vsInstaller = "03e3896b790b1734434ab12c2e06ca458e67395f" $urlCache_buildToolsInstaller = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msvc\vs2019_BuildTools_$version.exe" -$urlOfficial_buildToolsInstaller = "https://download.visualstudio.microsoft.com/download/pr/e8bc3741-cb70-42aa-9b4e-2bd497de85dd/f3713de3e01b7829d529f67d6240116b73cc0743974bb5373a052f9629cc24d2/vs_BuildTools.exe" -$sha1_buildToolsInstaller = "efb4600bf9bd09adf55a36e2e5d0d47a3abd481e" +$urlOfficial_buildToolsInstaller = "https://download.visualstudio.microsoft.com/download/pr/3105fcfe-e771-41d6-9a1c-fc971e7d03a7/e0c2f5b63918562fd959049e12dffe64bf46ec2e89f7cadde3214921777ce5c2/vs_BuildTools.exe" +$sha1_buildToolsInstaller = "59e62e552305e60420154395d79d5261d65f52dc" $installerPath = "C:\Windows\Temp\installer.exe" function Install { diff --git a/coin/provisioning/qtci-windows-10-x86_64/05-msvc2019.ps1 b/coin/provisioning/qtci-windows-10-x86_64/05-msvc2019.ps1 new file mode 100644 index 00000000..c65290df --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86_64/05-msvc2019.ps1 @@ -0,0 +1,36 @@ +############################################################################# +## +## Copyright (C) 2020 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# MSVC 2019 and Build Tools are pre-provisioned, but the updating happens with: +. "$PSScriptRoot\..\common\windows\update-msvc2019.ps1" + -- cgit v1.2.3 From 227482aa799d2ac01c2dccc92369a08d3b3328e1 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Thu, 15 Apr 2021 13:57:48 +0300 Subject: Provisioning: Resize ulimit value for open files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Linker for Qt Webengine builds needs to open multiple files. Without this it will hit the limit Task-number: COIN-699 Change-Id: I53b8c38a4f719714971ca6a4b65349716a873170 Reviewed-by: Ville-Pekka Karhu Reviewed-by: Michal Klocek Reviewed-by: Qt CI Bot Reviewed-by: Tony Sarajärvi (cherry picked from commit a4b61379cac768c1a9c21767f7c05df541dc6dfb) Reviewed-by: Qt Cherry-pick Bot --- .../01-set-ulimit.sh | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 coin/provisioning/qtci-linux-Ubuntu-20.04-x86_64/01-set-ulimit.sh diff --git a/coin/provisioning/qtci-linux-Ubuntu-20.04-x86_64/01-set-ulimit.sh b/coin/provisioning/qtci-linux-Ubuntu-20.04-x86_64/01-set-ulimit.sh new file mode 100644 index 00000000..f190f482 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-20.04-x86_64/01-set-ulimit.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + +############################################################################# +## +## Copyright (C) 2021 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# This script will set ulimit size for open files +# Linker for Qt Webengine builds needs to open a multiple files. Without this it will hit the limit. + +file="/etc/security/limits.conf" +file2="/etc/pam.d/common-session" +sudo sed -i '/End of file/d' $file +sudo tee -a $file <<"EOF" +* soft nproc 4096 +* hard nproc 4096 +* soft nofile 4096 +* hard nofile 4096 +root soft nproc 4096 +root hard nproc 4096 +root soft nofile 4096 +root hard nofile 4096 +# End of file +EOF + +sudo sed -i '/end of pam-auth-update config/d' $file2 +sudo tee -a $file2 <<"EOF" +session required pam_limits.so +# end of pam-auth-update config +EOF -- cgit v1.2.3