From 90b1ccf67bd57a3226d59f3d68d2597cd690c03d Mon Sep 17 00:00:00 2001 From: KrystalDelusion <93062060+KrystalDelusion@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:57:47 +1300 Subject: [PATCH] test-compile: Set oldest clang to 10 clang-11 through clang-16 fail under 24.04, but clang-10 works, so we can move that up to the oldest supported and drop the extra target for ubuntu-20.04 --- .github/workflows/test-compile.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test-compile.yml b/.github/workflows/test-compile.yml index 2321866b76e..203c20bb419 100644 --- a/.github/workflows/test-compile.yml +++ b/.github/workflows/test-compile.yml @@ -30,7 +30,7 @@ jobs: - ubuntu-latest compiler: # oldest supported - - 'clang-16' + - 'clang-10' - 'gcc-10' # newest, make sure to update maximum standard step to match - 'clang-19' @@ -39,9 +39,6 @@ jobs: # macOS - os: macos-13 compiler: 'clang' - # oldest clang not available on ubuntu-latest - - os: ubuntu-20.04 - compiler: 'clang-10' fail-fast: false steps: - name: Checkout Yosys