From: Nick Porter Date: Mon, 29 Jul 2024 09:35:35 +0000 (+0100) Subject: Debian sid appears to have dropped gcc-10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1566cdcb28a72b157331bfc013c0e98293f7ace9;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 514c048e52..9b855ab961 100644 --- a/.github/workflows/ci-deb.yml +++ b/.github/workflows/ci-deb.yml @@ -96,8 +96,8 @@ jobs: # Debian sid defaults to gcc12 which fails to build eapol_test - name: Install GCC 10 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