mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-05 19:32:56 +00:00
Compare commits
1 Commits
v0.1.2-dev
...
v0.1.2-dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f9db5feff4 |
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -38,7 +38,7 @@ jobs:
|
|||||||
- uses: softprops/action-gh-release@v1
|
- uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
files: target/vectordb-*.crate
|
files: target/package/vectordb-*.crate
|
||||||
fail_on_unmatched_files: true
|
fail_on_unmatched_files: true
|
||||||
|
|
||||||
python:
|
python:
|
||||||
|
|||||||
@@ -48,12 +48,23 @@ install_node() {
|
|||||||
else
|
else
|
||||||
nvm install 17 # latest that supports glibc 2.17
|
nvm install 17 # latest that supports glibc 2.17
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
printenv
|
||||||
|
echo "Node version:"
|
||||||
|
npm --version
|
||||||
|
which npm
|
||||||
|
which node
|
||||||
}
|
}
|
||||||
|
|
||||||
install_rust() {
|
install_rust() {
|
||||||
echo "Installing rust..."
|
echo "Installing rust..."
|
||||||
curl https://sh.rustup.rs -sSf | bash -s -- -y
|
curl https://sh.rustup.rs -sSf | bash -s -- -y
|
||||||
|
|
||||||
|
printenv
|
||||||
|
|
||||||
export PATH="$PATH:/root/.cargo/bin"
|
export PATH="$PATH:/root/.cargo/bin"
|
||||||
|
|
||||||
|
printenv
|
||||||
}
|
}
|
||||||
|
|
||||||
build_node_binary() {
|
build_node_binary() {
|
||||||
|
|||||||
@@ -92,7 +92,15 @@ docker run \
|
|||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
For debugging, use this snippet:
|
For debugging, use these snippets:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ARCH=aarch64
|
||||||
|
docker run -it \
|
||||||
|
-v $(pwd):/io -w /io \
|
||||||
|
quay.io/pypa/manylinux2014_$ARCH \
|
||||||
|
bash
|
||||||
|
```
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
ARCH=aarch64
|
ARCH=aarch64
|
||||||
@@ -101,6 +109,8 @@ docker run -it \
|
|||||||
quay.io/pypa/musllinux_1_1_$ARCH \
|
quay.io/pypa/musllinux_1_1_$ARCH \
|
||||||
bash
|
bash
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note: musllinux_1_1 is Alpine Linux 3.12
|
||||||
-->
|
-->
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user