Merge 'build native package for ARM64' from Nikita Sivukhin

I have ARM locally and absence of package complicates local testing and
development

Reviewed-by: Preston Thorpe <preston@turso.tech>

Closes #2907
This commit is contained in:
Pekka Enberg
2025-09-03 21:48:44 +03:00
committed by GitHub
5 changed files with 10 additions and 2 deletions

View File

@@ -38,6 +38,9 @@ jobs:
- host: macos-latest
target: aarch64-apple-darwin
build: yarn build --target aarch64-apple-darwin
- host: blacksmith-2vcpu-ubuntu-2404-arm
target: aarch64-unknown-linux-gnu
build: yarn build --target aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: wasm32-wasip1-threads
setup: |

View File

@@ -38,6 +38,9 @@ jobs:
- host: macos-latest
target: aarch64-apple-darwin
build: yarn build --target aarch64-apple-darwin
- host: blacksmith-2vcpu-ubuntu-2404-arm
target: aarch64-unknown-linux-gnu
build: yarn build --target aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: wasm32-wasip1-threads
setup: |

View File

@@ -23,7 +23,7 @@ This package is the Turso in-memory database library for JavaScript.
- **SQLite compatible:** SQLite query language and file format support ([status](https://github.com/tursodatabase/turso/blob/main/COMPAT.md)).
- **In-process**: No network overhead, runs directly in your Node.js process
- **TypeScript support**: Full TypeScript definitions included
- **Cross-platform**: Supports Linux, macOS, Windows and browsers (through WebAssembly)
- **Cross-platform**: Supports Linux (x86 and arm64), macOS, Windows and browsers (through WebAssembly)
## Installation

View File

@@ -26,6 +26,7 @@
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"universal-apple-darwin",
"aarch64-unknown-linux-gnu",
"wasm32-wasip1-threads"
]
},

View File

@@ -22,6 +22,7 @@
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"universal-apple-darwin",
"aarch64-unknown-linux-gnu",
"wasm32-wasip1-threads"
]
},
@@ -59,4 +60,4 @@
"dependencies": {
"@tursodatabase/database": "~0.1.4-pre.5"
}
}
}