We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8525d23 commit 65ef1b8Copy full SHA for 65ef1b8
1 file changed
.github/actions/build/action.yml
@@ -40,11 +40,12 @@ runs:
40
run: sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev
41
shell: ${{ inputs.shell_type }}
42
43
- # CMakeのセットアップ
44
- - name: Setup CMake
+ # Mac向けのCMakeのセットアップ
+ - name: Setup CMake on macOS
45
+ if: runner.os == 'macOS'
46
uses: lukka/get-cmake@latest
47
with:
- cmakeVersion: '3.25.2' # ← 使用したいバージョンを指定
48
+ cmakeVersion: '3.27.x' # cmakeバージョンを指定
49
50
- name: Check CMake version
51
run: cmake --version
@@ -106,7 +107,6 @@ runs:
106
107
-D BUILD_LIB_TYPE=dynamic
108
-D RUNTIME_LIB_TYPE=MT
109
-D CMAKE_OSX_ARCHITECTURES:STRING="${{ inputs.arch }}"
- -D CMAKE_POLICY_VERSION_MINIMUM=3.5
110
${{ env.ADDITIONAL_CMAKE_OPTIONS }}
111
112
# 10万行超えの警告が出るので一時的な処置として警告を抑制しています。
0 commit comments