Skip to content

Commit bf6906f

Browse files
committed
chore: fix armv7 build
1 parent 75981c1 commit bf6906f

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/package_armv7.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [18.19.1] # NB: when pkg-fetch bumps binaries, this must be updated
15+
node-version: [18.x] # NB: when pkg-fetch bumps binaries, this must be updated
1616
steps:
1717
- uses: actions/checkout@v4
1818

19-
- name: Use Node.js 18.19.1
19+
- name: Setup Node.js
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
@@ -27,13 +27,6 @@ jobs:
2727
npm ci
2828
npm run build
2929
30-
- name: Restore cache
31-
uses: actions/cache@v3
32-
with:
33-
path: |
34-
~/.cache/pkg
35-
key: ${{ runner.os }}-pkg-armv7-${{ matrix.node-version }}
36-
3730
- uses: uraimo/run-on-arch-action@v2
3831
name: Package
3932
with:
@@ -52,11 +45,8 @@ jobs:
5245
5346
- name: Build for armv7
5447
run: |
55-
mkdir -p ~/.cache/pkg
56-
export PKG_CACHE_PATH=~/.cache/pkg
57-
export PKG_IGNORE_TAG=true
5848
curl https://github.com/yao-pkg/pkg-binaries/releases/download/node18/built-v18.19.1-linux-armv7 -LOJ
59-
mv built-v18.19.1-linux-armv7 $PKG_CACHE_PATH/built-v${{ matrix.node-version }}-linux-armv7
49+
PKG_NODE_PATH=built-v18.19.1-linux-armv7
6050
npm run pkg -- --bundle --skip-build --arch=armv7
6151
6252
- name: Upload artifacts

0 commit comments

Comments
 (0)