Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-10-14 21:42:18 +0300
committerGitHub <noreply@github.com>2022-10-14 21:42:18 +0300
commite0c2b37daa2aaf235f670cff6f569c47a3481e92 (patch)
treeefb6289e8068ffab23253005433546a99ee41bc7
parent6aeb26a795f69dd91d2856658d442dea325a9d3e (diff)
parent9c469267781303ec0265bfe5abb47264fd71c68d (diff)
Merege PR #5928: CI(github-actions): Update Ubuntu runners
We were still using a runner on Ubuntu 18.04, which is getting deprecated by GitHub in the near future. In order to avoid having failing CI jobs due to that and also in order to keep up with changes in Ubuntu, we now build on 20.04 and 22.04 instead.
-rwxr-xr-x.github/actions/install-dependencies/install_ubuntu_shared_64bit.sh2
-rw-r--r--.github/workflows/build.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/install-dependencies/install_ubuntu_shared_64bit.sh b/.github/actions/install-dependencies/install_ubuntu_shared_64bit.sh
index 77b6fb614..800636af6 100755
--- a/.github/actions/install-dependencies/install_ubuntu_shared_64bit.sh
+++ b/.github/actions/install-dependencies/install_ubuntu_shared_64bit.sh
@@ -7,7 +7,7 @@ sudo apt -y install \
g++-multilib \
ninja-build \
pkg-config \
- qt5-default \
+ qtbase5-dev \
qttools5-dev \
qttools5-dev-tools \
libqt5svg5-dev \
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 69e37231b..6a9e97a04 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-18.04, ubuntu-20.04]
+ os: [ubuntu-20.04, ubuntu-22.04]
type: [shared] # Currently the "static" build doesn't work for Linux systems
arch: [64bit]