Skip to content

Commit

Permalink
docker/ubuntu: Increase gcc/g++ -> 13 (#304)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Dec 13, 2023
1 parent 7761e1e commit e2ed613
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/linux/ubuntu/fun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ APT_REPOS=(
COMMON_PACKAGES=(
apt-transport-https
ca-certificates
g++
git
gnupg2
gpg-agent
unzip
wget
xz-utils)
DEV_PACKAGES=(
g++-13
git)
CI_PACKAGES=(
aspell
aspell-en
Expand Down Expand Up @@ -126,7 +127,9 @@ install_base () {
add_ubuntu_keys "${APT_KEYS_ENV[@]}"
add_apt_repos "${APT_REPOS_ENV[@]}"
apt-get -qq update
apt_install "${DEV_PACKAGES[@]}"
apt-get -qq dist-upgrade -y
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 1
ensure_stdlibcc
}

Expand Down

0 comments on commit e2ed613

Please sign in to comment.