From 9bf7450e48cb5941c23d75fe9a06dbd9fe5753a2 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Wed, 15 May 2024 23:11:13 -0500 Subject: [PATCH] Try to test gcc 8 in CI --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 41dc7d00..edc555e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,13 +13,13 @@ jobs: strategy: fail-fast: false matrix: - compiler: [g++-10, clang++-14] + compiler: [g++-8, g++-10, clang++-14] target: [Debug] steps: - uses: actions/checkout@v2 - name: dependencies run: | - sudo apt install gcc-10 g++-10 libgcc-10-dev + sudo apt install gcc-10 g++-10 libgcc-10-dev gcc-8 g++-8 libgcc-8-dev python3 -m pip install git+https://github.com/jeffkaufman/icdiff.git - name: build run: |