File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7575 run : cmake --build build -v
7676 - name : Install
7777 run : cmake --install build -v
78+ build-macos-arm64-debug :
79+ runs-on : macos-latest
80+ steps :
81+ - name : Install required packages
82+ run : brew update && brew install cmake
83+ - uses : actions/checkout@v4
84+ - name : Configure
85+ run : cmake -DCMAKE_BUILD_TYPE=Debug -B build
86+ - name : Build
87+ run : cmake --build build -v
88+ - name : Install
89+ run : cmake --install build -v
90+ build-macos-arm64-release :
91+ runs-on : macos-latest
92+ steps :
93+ - name : Install required packages
94+ run : brew update && brew install cmake
95+ - uses : actions/checkout@v4
96+ - name : Configure
97+ run : cmake -DCMAKE_BUILD_TYPE=Release -B build
98+ - name : Build
99+ run : cmake --build build -v
100+ - name : Install
101+ run : cmake --install build -v
You can’t perform that action at this time.
0 commit comments