Skip to content

Commit c728b65

Browse files
author
Marcus Pousette
committed
fix: add missing dependencies (curl, unzip) in alpine build steps
1 parent e572347 commit c728b65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prebuilt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
VER=$(node -p "require('./package.json').version")
120120
echo "tag=v${VER#v}" >> $GITHUB_OUTPUT
121121
fi
122-
- run: apk add build-base git python3 py3-setuptools bash gettext --update-cache
122+
- run: apk add build-base git python3 py3-setuptools bash gettext curl unzip --update-cache
123123
- run: git clone --depth 1 https://github.com/asg017/sqlite-vec.git
124124
- run: |
125125
set -eux; cd sqlite-vec; [ -f ./scripts/vendor.sh ] && bash ./scripts/vendor.sh || true; make loadable
@@ -163,7 +163,7 @@ jobs:
163163
run: |
164164
docker run --rm -v $PWD:/w --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:20-alpine -c '
165165
set -eux;
166-
apk add build-base git python3 py3-setuptools bash gettext --update-cache;
166+
apk add build-base git python3 py3-setuptools bash gettext curl unzip --update-cache;
167167
cd /w; git clone --depth 1 https://github.com/asg017/sqlite-vec.git;
168168
cd sqlite-vec; [ -f ./scripts/vendor.sh ] && bash ./scripts/vendor.sh || true; make loadable;
169169
'

0 commit comments

Comments
 (0)