diff options
Diffstat (limited to '.github/workflows/review.yml')
-rw-r--r-- | .github/workflows/review.yml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 3fa29f6..e5fbf4e 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 CXGALGS=-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 |