Compare commits

...

1 Commits

Author SHA1 Message Date
Will Jones
f9db5feff4 add dbg prints 2023-05-25 09:23:40 -07:00
3 changed files with 23 additions and 2 deletions

View File

@@ -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:

View File

@@ -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() {

View File

@@ -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
--> -->
``` ```