diff --git a/.github/workflows/meson.yaml b/.github/workflows/meson.yaml index ebddd3e..109db69 100644 --- a/.github/workflows/meson.yaml +++ b/.github/workflows/meson.yaml @@ -26,6 +26,12 @@ jobs: cc: "gcc", cxx: "g++", extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin", } + - { + name: "Windows Latest Clang", + os: windows-latest, + cc: "clang", cxx: "clang++", c_ld: "lld-link", cxx_ld: "lld-link", + extra_path: "", + } - { name: "Ubuntu Latest GCC", os: ubuntu-latest, @@ -34,6 +40,12 @@ jobs: cc: "gcc", cxx: "g++", extra_path: "" } + - { + name: "Ubuntu Latest Clang", + os: ubuntu-latest, + cc: "clang", cxx: "clang++", c_ld: "lld", cxx_ld: "lld", + extra_path: "" + } - { name: "macOS Latest Clang", os: macos-latest,