Skip to content

Commit

Permalink
CI: add Windows clang targets
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jan 5, 2025
1 parent e4ac072 commit d2f2360
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/generate-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ jobs:
{"name": "macOS arm64", "os": "macos-15", "cmake_env": "CMAKE_OSX_ARCHITECTURES=arm64"},
{"name": "macOS x86_64", "os": "macos-15", "cmake_env": "CMAKE_OSX_ARCHITECTURES=x86_64"},
{"name": "Windows", "os": "windows-latest"},
{"name": "Windows Clang-CL", "os": "windows-latest", "cmake_options": "-T ClangCl"},
{"name": "Windows Clang", "os": "windows-latest", "cmake_options": "-T Clang"},
]
include:
- name: Windows Clang-CL
os: windows-latest
compiler: clang-cl
- name: Windows Clang
os: windows-latest
compiler: clang
env:
CMAKE_OPTIONS: -DDEV_MODE=ON
CMAKE_OPTIONS: -DDEV_MODE=ON ${{ matrix.target.cmake_options }}
CMAKE_ENV: ${{ matrix.target.cmake_env }}
steps:
- name: list compilers
Expand Down

0 comments on commit d2f2360

Please sign in to comment.