From: Nick Porter Date: Mon, 29 Jul 2024 08:57:33 +0000 (+0100) Subject: Debian sid appears to have dropped gcc-10 X-Git-Tag: release_3_2_6~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c278bf9848cb58ad0dedaf56763c8b10b1d4cfa2;p=thirdparty%2Ffreeradius-server.git Debian sid appears to have dropped gcc-10 --- diff --git a/.github/workflows/ci-deb.yml b/.github/workflows/ci-deb.yml index 131f9076651..e43b2e96adc 100644 --- a/.github/workflows/ci-deb.yml +++ b/.github/workflows/ci-deb.yml @@ -95,10 +95,10 @@ jobs: key: hostapd-${{ matrix.env.NAME }}-${{ env.HOSTAPD_GIT_TAG }}-v1 # Debian sid defaults to gcc12 which fails to build eapol_test - - name: Install GCC 10 for eapol_test build + - name: Install GCC 11 for eapol_test build run: | - apt-get install -y --no-install-recommends gcc-10 - update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 && update-alternatives --set gcc /usr/bin/gcc-10 + apt-get install -y --no-install-recommends gcc-11 + update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 60 && update-alternatives --set gcc /usr/bin/gcc-11 if: ${{ matrix.env.OS == 'debian:sid' }} - name: Build eapol_test