fix cmake presets

This commit is contained in:
BlackMATov
2022-11-06 20:46:21 +07:00
parent f92ee24fbc
commit a0119d38b6
3 changed files with 21 additions and 19 deletions

View File

@@ -18,6 +18,8 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install ninja by Homebrew
run: brew install ninja
- name: Select Xcode
run: sudo xcode-select --switch "/Applications/Xcode_${{matrix.config.xcode}}.app"
- name: Build && Test

View File

@@ -10,11 +10,11 @@ jobs:
matrix:
config:
# https://github.com/actions/virtual-environments/tree/main/images/win
- { os: "windows-2019", vs: "msvc2019", arch: "x86" }
- { os: "windows-2019", vs: "msvc2019", arch: "x64" }
- { os: "windows-2022", vs: "msvc2022", arch: "x86" }
- { os: "windows-2022", vs: "msvc2022", arch: "x64" }
name: "${{matrix.config.vs}} ${{matrix.config.arch}}"
- { os: "windows-2019", vc: "msvc2019", arch: "x86" }
- { os: "windows-2019", vc: "msvc2019", arch: "x64" }
- { os: "windows-2022", vc: "msvc2022", arch: "x86" }
- { os: "windows-2022", vc: "msvc2022", arch: "x64" }
name: "${{matrix.config.vc}} ${{matrix.config.arch}}"
steps:
- uses: actions/checkout@v2
with: