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 20:56:50 +0300
committerRobert Adam <dev@robert-adam.de>2022-10-14 21:02:00 +0300
commit9c469267781303ec0265bfe5abb47264fd71c68d (patch)
tree29b42d041a1bad1002d56e3c1f8616c90a07508c
parent78350de057a75c062e2cc314cf2df675517712e6 (diff)
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]