Compare commits

...

1 Commits

Author SHA1 Message Date
Will Jones
a8f139ad23 fixes for action 2023-05-23 20:12:41 -07:00
2 changed files with 31 additions and 13 deletions

View File

@@ -37,8 +37,8 @@ jobs:
run: cargo package --all-features run: cargo package --all-features
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
with: with:
files: | draft: true
rust/target/vectordb-*.crate files: target/vectordb-*.crate
python: python:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -55,11 +55,14 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.10 python-version: "3.10"
- name: Build wheel - name: Build wheel
run: python setup.py sdist bdist_wheel run: |
pip install wheel
python setup.py sdist bdist_wheel
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
with: with:
draft: true
files: | files: |
python/dist/lancedb-*.tar.gz python/dist/lancedb-*.tar.gz
python/dist/lancedb-*.whl python/dist/lancedb-*.whl
@@ -79,7 +82,6 @@ jobs:
node-version: 20 node-version: 20
cache: 'npm' cache: 'npm'
cache-dependency-path: node/package-lock.json cache-dependency-path: node/package-lock.json
- uses: Swatinem/rust-cache@v2
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt update sudo apt update
@@ -91,12 +93,14 @@ jobs:
npm pack npm pack
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
with: with:
draft: true
files: node/vectordb-*.tgz files: node/vectordb-*.tgz
node-macos: node-macos:
runs-on: macos-12 runs-on: macos-12
needs: draft-release needs: draft-release
strategy: strategy:
fail-fast: false
matrix: matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin] target: [x86_64-apple-darwin, aarch64-apple-darwin]
steps: steps:
@@ -104,35 +108,53 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install system dependencies - name: Install system dependencies
run: brew install protobuf run: brew install protobuf
- name: Install npm dependencies
run: |
cd node
npm ci
- name: Build MacOS native node modules - name: Build MacOS native node modules
run: bash ci/build_macos_artifacts.sh ${{ matrix.target }} run: bash ci/build_macos_artifacts.sh ${{ matrix.target }}
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
with: with:
draft: true
files: node/dist/vectordb-darwin*.tgz files: node/dist/vectordb-darwin*.tgz
node-linux: node-linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: draft-release needs: draft-release
strategy: strategy:
fail-fast: false
matrix: matrix:
target: target:
- x86_64-unknown-linux-gnu:centos - x86_64-unknown-linux-gnu
- aarch64-unknown-linux-gnu:centos - aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl - aarch64-unknown-linux-musl
- x86_64-unknown-linux-musl - x86_64-unknown-linux-musl
steps: steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Rust
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
- name: Install system dependencies - name: Install system dependencies
run: | run: |
sudo apt update sudo apt update
sudo apt install -y protobuf-compiler libssl-dev sudo apt install -y protobuf-compiler libssl-dev
cargo install cross
- name: Install npm dependencies
run: |
cd node
npm ci
- name: Build Linux native node modules - name: Build Linux native node modules
run: bash ci/build_linux_artifacts.sh ${{ matrix.target }} run: bash ci/build_linux_artifacts.sh ${{ matrix.target }}
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
with: with:
draft: true
files: node/dist/vectordb-linux*.tgz files: node/dist/vectordb-linux*.tgz
release: release:
needs: [python, node, node-macos, node-linux] needs: [python, node, node-macos, node-linux, rust]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3

View File

@@ -20,11 +20,7 @@ build_node_binaries() {
do do
echo "Building node library for $target" echo "Building node library for $target"
# cross doesn't yet pass this down to Docker, so we do it ourselves. # cross doesn't yet pass this down to Docker, so we do it ourselves.
if [[ $target == x86_64* ]]; then export CROSS_CONTAINER_OPTS="--platform linux/amd64"
export CROSS_CONTAINER_OPTS="--platform linux/amd64"
else
export CROSS_CONTAINER_OPTS="--platform linux/arm64/v8"
fi
npm run cross-release -- --target $target npm run cross-release -- --target $target
npm run pack-build -- --target $target npm run pack-build -- --target $target
done done