From b2ad75416d2c928de0f176ecd05ee6f61b98c4d8 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 21 Jan 2025 09:01:10 -0800 Subject: [PATCH] Update Clang Matrix Summary: The LLVM project no longer distributes Clang-15. At the time of writing, the default being installed (which we call `0`) is Clang-18. Also available are Clang-17 and Clang-19. Replace Clang-15 with Clang-19. Differential Revision: D68445686 --- .github/workflows/build_main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_main.yml b/.github/workflows/build_main.yml index 020c6c40ad1..b3a86f642de 100644 --- a/.github/workflows/build_main.yml +++ b/.github/workflows/build_main.yml @@ -99,9 +99,9 @@ jobs: strategy: matrix: clang_version: - - 0 - - 15 + - 0 # At time of edit 18. - 17 + - 19 steps: - uses: actions/checkout@v4.1.1 - uses: "./.github/actions/prepare_debian"