Skip to content

Commit

Permalink
Try MSVC 17.10 with CMake 3.29
Browse files Browse the repository at this point in the history
  • Loading branch information
demianmnave committed Nov 19, 2024
1 parent 29cf7f0 commit f21ea80
Showing 1 changed file with 34 additions and 37 deletions.
71 changes: 34 additions & 37 deletions .github/workflows/msvc17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,49 +4,46 @@ name: msvc17
on: push

jobs:
msvc-latest:
name: MSVC Latest
# msvc-latest:
# name: MSVC Latest
# runs-on: windows-2022
# steps:
# - uses: actions/checkout@v4
# - uses: lukka/get-cmake@latest
# with:
# cmakeVersion: "~3.29.0"
# - uses: lukka/run-vcpkg@v11
# - uses: lukka/run-cmake@v10
# with:
# configurePreset: "cml-ci-ninja-msvc-mt-s"
# buildPreset: "cml-ci-ninja-msvc-mt-s-release"
# testPreset: "cml-ci-ninja-msvc-mt-s-release-test"

msvc-17-10:
name: MSVC 17.10
runs-on: windows-2022
steps:
- name: Install MSVC 17.10
shell: pwsh
run: |
$vspath = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise'
Test-Path -Path $vspath | Should -Be $true
$vsinstaller = 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe'
Test-Path -Path $vsinstaller | Should -Be $true
Start-Process -NoNewWindow -Wait -FilePath $vsinstaller -ArgumentList `
'modify', '--installPath', "`"$vspath`"", '--quiet', '--norestart', '--nocache', '--noUpdateInstaller', `
'--add', 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-ninja-msvc-mt-s"
buildPreset: "cml-ci-ninja-msvc-mt-s-release"
testPreset: "cml-ci-ninja-msvc-mt-s-release-test"

# msvc-17-10:
# name: MSVC 17.10
# runs-on: windows-2022
# steps:
# - name: Install MSVC 17.10
# shell: pwsh
# run: |
# $vspath = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise'
# Test-Path -Path $vspath | Should -Be $true
#
# $vsinstaller = 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe'
# Test-Path -Path $vsinstaller | Should -Be $true
#
# Start-Process -NoNewWindow -Wait -FilePath $vsinstaller -ArgumentList `
# 'modify', '--installPath', "`"$vspath`"", '--quiet', '--norestart', '--nocache', '--noUpdateInstaller', `
# '--add', 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'
#
# - uses: lukka/get-cmake@latest
# with:
# cmakeVersion: "~3.29.0"
# useCloudCache: true
#
# - uses: actions/checkout@v4
#
# - name: CMake configure-build-test
# uses: lukka/run-cmake@v10
# with:
# configurePreset: "cml-ci-msvc17-mt-s"
# configurePresetAdditionalArgs: "['-T version=14.40']"
# buildPreset: "cml-ci-msvc17-mt-s-release"
# testPreset: "cml-ci-msvc17-mt-s-release-test"
configurePreset: "cml-ci-msvc17-mt-s"
configurePresetAdditionalArgs: "['-T version=14.40']"
buildPreset: "cml-ci-msvc17-mt-s-release"
testPreset: "cml-ci-msvc17-mt-s-release-test"

0 comments on commit f21ea80

Please sign in to comment.