mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-13 07:45:53 +08:00
Also install lcov 2.0 into our ubuntu machines. Change-Id: Ib70445c94ae1dab07b9b58ba58900b12f7d23161 Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io> Reviewed-by: Robert Griebl <robert.griebl@qt.io> Reviewed-by: Simo Fält <simo.falt@qt.io>
10 lines
420 B
Bash
Executable File
10 lines
420 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# Install lcov 2.0 from 24.04/noble numbat
|
|
|
|
echo "Installing lcov"
|
|
wget https://ci-files01-hki.ci.qt.io/input/lcov/lcov_2.0-4ubuntu1_all.deb
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get -q -y -o DPkg::Lock::Timeout=300 install -f ./lcov_2.0-4ubuntu1_all.deb
|