| 69 | } |
| 70 | |
| 71 | static constexpr StringView supportMatrixHostName(Build::Platform::Type platform) |
| 72 | { |
| 73 | switch (platform) |
| 74 | { |
| 75 | case Build::Platform::Windows: return "Windows"; |
| 76 | case Build::Platform::Apple: return "macOS"; |
| 77 | case Build::Platform::Linux: return "Linux"; |
| 78 | case Build::Platform::Wasm: return "Wasm"; |
| 79 | case Build::Platform::Unknown: return "unknown"; |
| 80 | } |
| 81 | Assert::unreachable(); |
| 82 | } |
| 83 | |
| 84 | static constexpr StringView supportMatrixArchitectureName(Build::Architecture::Type architecture) |
| 85 | { |