Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/jobs/configure-checks/setup_configure_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ case $distro_id in
dnf install pkg-config make bats autoconf automake util-linux -y ;;
*)
apt-get update; apt-get full-upgrade -y
# Install g++-12 to make sure we can use -std=c++20
version=$(g++ -dumpversion 2>/dev/null | awk -F'.' '{print $1}' 2>/dev/null || echo 0); [ "${version}" -lt 12 ] && apt install -y g++-12
apt-get install pkg-config make bats autoconf -y ;;
esac

Expand Down
Loading