Skip to content

Commit f2abe9e

Browse files
committed
fix: remove arm from osx
1 parent a97e948 commit f2abe9e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/cmake-multiple-platform.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)