Skip to content

Commit

Permalink
CI: Disable SSE2 on ARM runners
Browse files Browse the repository at this point in the history
  • Loading branch information
missinglink committed Jan 22, 2025
1 parent 47fcd86 commit 0fe2e81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:
git clone https://github.com/openvenues/libpostal
cd libpostal
./bootstrap.sh
./configure --datadir=/data --prefix=/deps --bindir=/deps || cat config.log
CONFIGURE_FLAGS=(--datadir=/data --prefix=/deps --bindir=/deps)
if [[ $(uname -m) == 'arm64' ]]; then CONFIGURE_FLAGS+=(--disable-sse2); fi
./configure "${CONFIGURE_FLAGS[@]}" || cat config.log
make -j4
make install
- name: 'Install node.js ${{ matrix.node-version }}'
Expand Down

0 comments on commit 0fe2e81

Please sign in to comment.