Skip to content
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: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
- name: CPU information
run: sysctl hw
if: matrix.os == 'macos-latest'
if: contains(matrix.os, 'macos')
- name: CPU information
run: wmic cpu list /format:list
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion ci/build-build-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const array = [
},
{
"build": "aarch64-macos",
"os": "macos-latest",
"os": "macos-14",
"target": "aarch64-apple-darwin",
},
{
Expand Down
6 changes: 6 additions & 0 deletions ci/build-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ const array = [
"name": "Test macOS x86_64",
"filter": "macos-x64"
},
{
"os": "macos-14",
"name": "Test macOS arm64",
"filter": "macos-arm64",
"target": "aarch64-apple-darwin"
},
{
"os": "windows-latest",
"name": "Test Windows MSVC x86_64",
Expand Down