1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-04-11 23:31:17 -05:00

feat: amd64+arm64 builds to ensure building ffs

This commit is contained in:
diced 2025-02-03 16:04:34 -08:00
parent f67ab2a9d8
commit 333ea0b949
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -9,10 +9,12 @@ on:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node: [20.x, 22.x, 23.x]
arch: [amd64, arm64]
runs-on: ubuntu-24.04${{ matrix.arch == 'arm64' && '-arm' || '' }}
steps:
- uses: actions/checkout@v4