File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,6 @@ jobs:
100100 run : |
101101 # Install ninja via homebrew if not present
102102 brew list ninja &>/dev/null || brew install ninja
103- # Ensure we're using the ARM64 architecture
104- echo "CMAKE_OSX_ARCHITECTURES=arm64" >> $GITHUB_ENV
105103
106104 - name : Setup CMake
107105 if : matrix.setup_env == 'msvc' || matrix.setup_env == 'clang'
@@ -122,11 +120,7 @@ jobs:
122120 - name : Configure
123121 shell : bash -el {0}
124122 run : |
125- CMAKE_ARGS=""
126- if [[ "${{ matrix.setup_env }}" == "clang" ]]; then
127- CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64"
128- fi
129- cmake -S . -B build -G "Ninja" -DCPPLM_VERSION="${{ needs.setup.outputs.tag_name }}" $CMAKE_ARGS
123+ cmake -S . -B build -G "Ninja" -DCPPLM_VERSION="${{ needs.setup.outputs.tag_name }}"
130124
131125 - name : Build
132126 shell : bash -el {0}
You can’t perform that action at this time.
0 commit comments