From 8a90914a2add81049435094a4c23d6ed03d4d59e Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Thu, 11 Aug 2022 12:00:31 -0700 Subject: [PATCH] Add Windows 2022 Clang-cl runner Several people using clang-cl on Windows are reporting build errors after a upgrading to v13. This tries to replicate the error to allow testing a fix. Signed-off-by: Sean Robinson --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc224f..ad1aa60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: - ubuntu-latest-gcc - windows-2019-msvc - windows-latest-msvc + - windows-latest-clang include: - toolchain: macos-latest-clang @@ -53,6 +54,11 @@ jobs: c_compiler: msvc cxx_compiler: msvc + - toolchain: windows-latest-clang + os: windows-latest + c_compiler: clang-cl + cxx_compiler: clang-cl + steps: - name: Checkout Code