@@ -13,18 +13,18 @@ jobs:
1313 strategy :
1414 matrix :
1515 cmake : [
16- {name: "Xcode", generator: "Xcode", config: Release, build_target : ALL_BUILD, test_target : RUN_TESTS, install_target : install},
17- {name: "Make", generator: "Unix Makefiles", config: Release, build_target : all, test_target : test, install_target : install},
16+ {name: "Xcode", generator: "Xcode", config: Release, build : ALL_BUILD, test : RUN_TESTS, install : install},
17+ {name: "Make", generator: "Unix Makefiles", config: Release, build : all, test : test, install : install}
1818 ]
1919 python : [
2020 {version: "3.9"},
2121 #{version: "3.10"},
2222 #{version: "3.11"},
23- {version: "3.12"},
24- # {version: "3.13"},
23+ # {version: "3.12"},
24+ {version: "3.13"},
2525 ]
2626 fail-fast : false
27- name : MacOS•${{matrix.cmake.name}}•Py${{matrix.python.version}}
27+ name : MacOS•CMake( ${{matrix.cmake.name}}) •Py${{matrix.python.version}}
2828 runs-on : macos-latest # macos M1 based runner
2929 steps :
3030 - uses : actions/checkout@v6
@@ -35,10 +35,10 @@ jobs:
3535 - name : Setup Python
3636 uses : actions/setup-python@v6
3737 with :
38- python-version : ${{ matrix.python.version }}
38+ python-version : ${{matrix.python.version}}
3939 - name : Update Path
4040 run : |
41- echo "$HOME/Library/Python/${{ matrix.python.version }}/bin" >> $GITHUB_PATH
41+ echo "$HOME/Library/Python/${{matrix.python.version}}/bin" >> $GITHUB_PATH
4242 echo "$HOME/.local/bin" >> $GITHUB_PATH
4343 - name : Check CMake
4444 run : cmake --version
@@ -52,20 +52,20 @@ jobs:
5252 run : >
5353 cmake --build build
5454 --config ${{matrix.cmake.config}}
55- --target ${{matrix.cmake.build_target }}
55+ --target ${{matrix.cmake.build }}
5656 -v -j2
5757 - name : Test
5858 run : >
5959 CTEST_OUTPUT_ON_FAILURE=1
6060 cmake --build build
6161 --config ${{matrix.cmake.config}}
62- --target ${{matrix.cmake.test_target }}
62+ --target ${{matrix.cmake.test }}
6363 -v
6464 - name : Install
6565 run : >
6666 cmake --build build
6767 --config ${{matrix.cmake.config}}
68- --target ${{matrix.cmake.install_target }}
68+ --target ${{matrix.cmake.install }}
6969 -v
7070
7171 arm64_macos :
0 commit comments