From: Kinga Stefaniuk Date: Wed, 31 Jul 2024 14:24:37 +0000 (+0200) Subject: CI: add new gcc 14 X-Git-Tag: mdadm-4.4~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18f6abca8d689206807c03469d6f53621507b263;p=thirdparty%2Fmdadm.git CI: add new gcc 14 Add new released gcc to compilation test during GH action. Change runner to Ubuntu 24.04 which supports gcc versions up to 14. Previously ubuntu-latest was used (22.04) which didn't support gcc 13 and 14. Add verification if correct gcc was installed during test. Signed-off-by: Kinga Stefaniuk --- diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 0b059b41..e5fbf4ee 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -4,25 +4,29 @@ env: cflags: -Werror jobs: make: - runs-on: ubuntu-latest + # when gcc is not found, it may be needed to update runner version + runs-on: ubuntu-24.04 name: Compilation test with gcc strategy: matrix: - gcc-version: [7, 8, 9, 10, 11, 12, 13] + # gcc-versions are used to test up to 5 years old + gcc-version: [9, 10, 11, 12, 13, 14] steps: - uses: actions/checkout@v4 - name: 'Add ubuntu repository and install dependencies' run: .github/tools/install_ubuntu_packages.sh ${{ matrix.gcc-version }} + - name: 'Check if gcc was installed correctly' + run: gcc-${{ matrix.gcc-version }} --version - name: 'Make with DEBUG flag' - run: CC=gcc-${{ matrix.gcc-version }} && V=1 make -j$(nproc) -B CXFLAGS=-DEBUG && make clean + run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DEBUG && make clean - name: 'Make with DEBIAN flag' - run: CC=gcc-${{ matrix.gcc-version }} && V=1 make -j$(nproc) -B CXFLAGS=-DEBIAN && make clean + run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DEBIAN && make clean - name: 'Make with USE_PTHREADS flag' - run: CC=gcc-${{ matrix.gcc-version }} && V=1 make -j$(nproc) -B CXFLAGS=-USE_PTHREADS && make clean + run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-USE_PTHREADS && make clean - name: 'Make with DNO_LIBUDEV flag' - run: CC=gcc-${{ matrix.gcc-version }} && V=1 make -j$(nproc) -B CXFLAGS=-DNO_LIBUDEV && make clean + run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DNO_LIBUDEV && make clean - name: 'Make' - run: CC=gcc-${{ matrix.gcc-version }} && V=1 make -j$(nproc) + run: V=1 make -j$(nproc) CC=gcc-${{ matrix.gcc-version }} - name: hardening-check mdadm run: hardening-check mdadm - name: hardening-check mdmon