From f9db5feff4675d8b2a328d0fc79eb6282fa9626a Mon Sep 17 00:00:00 2001 From: Will Jones Date: Thu, 25 May 2023 09:20:37 -0700 Subject: [PATCH] add dbg prints --- .github/workflows/release.yml | 2 +- ci/build_linux_artifacts.sh | 11 +++++++++++ ci/release_process.md | 12 +++++++++++- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 758cb8a5..387f9c00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: - uses: softprops/action-gh-release@v1 with: draft: true - files: target/vectordb-*.crate + files: target/package/vectordb-*.crate fail_on_unmatched_files: true python: diff --git a/ci/build_linux_artifacts.sh b/ci/build_linux_artifacts.sh index 1f59c0d8..63c5d207 100644 --- a/ci/build_linux_artifacts.sh +++ b/ci/build_linux_artifacts.sh @@ -48,12 +48,23 @@ install_node() { else nvm install 17 # latest that supports glibc 2.17 fi + + printenv + echo "Node version:" + npm --version + which npm + which node } install_rust() { echo "Installing rust..." curl https://sh.rustup.rs -sSf | bash -s -- -y + + printenv + export PATH="$PATH:/root/.cargo/bin" + + printenv } build_node_binary() { diff --git a/ci/release_process.md b/ci/release_process.md index 8beca831..469abd0d 100644 --- a/ci/release_process.md +++ b/ci/release_process.md @@ -92,7 +92,15 @@ docker run \ ```