Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- os: ubuntu-20.04
node-version: 10.x
status: 'deprecated'
- os: ubuntu-24.04-arm
node-version: 22.x
status: 'current'
steps:
- uses: actions/checkout@v4
- name: 'Install apt packages'
Expand All @@ -44,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) =~ ^(aarch64|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