Add support for Visual Studio 2026 v145 toolset. #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| defaults: | |
| run: | |
| shell: cmd | |
| jobs: | |
| vs2022: | |
| name: Visual Studio 2022 | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: install llvm utils | |
| run: | | |
| CALL "VS2017\install.bat" 1 | |
| vs2019: | |
| name: Visual Studio 2019 | |
| if: false | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: install llvm utils | |
| run: | | |
| CALL "VS2017\install.bat" 1 | |
| vs2017: | |
| name: Visual Studio 2017 | |
| if: false | |
| runs-on: windows-2016 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: install llvm utils | |
| run: | | |
| CALL "VS2017\install.bat" 1 |