mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
Make sure add-apt-repository is available.
This commit is contained in:
parent
2d0db677aa
commit
af00bf5667
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