Skip to content

Commit bd3767a

Browse files
updating macos runner image (#476)
* updated macos runner image * added nuget cli
1 parent c9e4954 commit bd3767a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/job-cmakebuild-macOS.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ on:
1818
jobs:
1919
cmake-build:
2020
name: cmake-build-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
21-
runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-14' }}
21+
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222
steps:
2323
- name: Checkout repository
2424
uses: actions/checkout@v4
25+
26+
- name: Install NuGet CLI
27+
run: brew install nuget
2528

2629
- name: CMake Build
2730
run: .\Scripts\BuildEngine.ps1 -Configurations ${{inputs.configuration}} -Architecture ${{inputs.architecture}} -RunClangFormat 0

.github/workflows/job-deploy-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
deploy:
2020
name: deploy-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
21-
runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-latest' }}
21+
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222
steps:
2323
- uses: actions/download-artifact@v4
2424
with:

.github/workflows/job-test-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
test:
1717
name: test-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
18-
runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-latest' }}
18+
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4

0 commit comments

Comments
 (0)