Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Also clang-format-17 installer to windows #162

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions windows/image/install-tools.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Push-location "$PSScriptRoot"
./installers/install-cuda.ps1 -cudaVersion $cudaVersion
./installers/install-git.ps1
./installers/install-lit.ps1
## Must be after lit installation for pip
./installers/install-clang-format.ps1
./installers/install-cmake.ps1
./installers/install-ninja.ps1
./installers/install-sccache.ps1
Expand Down
3 changes: 3 additions & 0 deletions windows/image/installers/install-clang-format.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Ensure that this runs after the lit installer so we already have pip
python -m pip install --upgrade pip
python -m pip install clang-format==17.*