mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Make sure add-apt-repository is available.
This commit is contained in:
parent
637ee0bee6
commit
4fd0a9f0ec
1 changed files with 4 additions and 3 deletions
7
.github/workflows/pr_build.yml
vendored
7
.github/workflows/pr_build.yml
vendored
|
@ -184,15 +184,16 @@ jobs:
|
|||
run: |
|
||||
if [[ "${{ matrix.os }}" =~ "Ubuntu" || "${{ matrix.os }}" =~ "Debian" ]]; then
|
||||
|
||||
echo "Adding Toolchain test PPA"
|
||||
add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||
|
||||
echo "Updating apt repository index"
|
||||
sudo apt update || exit 1
|
||||
|
||||
echo "Installing apt packages"
|
||||
sudo apt install -y ${{ matrix.apt-dependencies }} || exit 1
|
||||
|
||||
echo "Adding Toolchain test PPA"
|
||||
apt install -y software-properties-common
|
||||
add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||
|
||||
echo "Installing gcc-13"
|
||||
apt install -y gcc-13 g++-13 || exit 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue