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 <sean.robinson@scottsdalecc.edu>
This commit is contained in:
Sean Robinson 2022-08-11 12:00:31 -07:00
parent 566d1df20e
commit 8a90914a2a

View File

@ -21,6 +21,7 @@ jobs:
- ubuntu-latest-gcc - ubuntu-latest-gcc
- windows-2019-msvc - windows-2019-msvc
- windows-latest-msvc - windows-latest-msvc
- windows-latest-clang
include: include:
- toolchain: macos-latest-clang - toolchain: macos-latest-clang
@ -53,6 +54,11 @@ jobs:
c_compiler: msvc c_compiler: msvc
cxx_compiler: msvc cxx_compiler: msvc
- toolchain: windows-latest-clang
os: windows-latest
c_compiler: clang-cl
cxx_compiler: clang-cl
steps: steps:
- name: Checkout Code - name: Checkout Code