File tree 1 file changed +3
-13
lines changed
1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
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
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
19
- - name : Use Node.js 18.19.1
19
+ - name : Setup Node.js
20
20
uses : actions/setup-node@v4
21
21
with :
22
22
node-version : ${{ matrix.node-version }}
27
27
npm ci
28
28
npm run build
29
29
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
-
37
30
- uses : uraimo/run-on-arch-action@v2
38
31
name : Package
39
32
with :
52
45
53
46
- name : Build for armv7
54
47
run : |
55
- mkdir -p ~/.cache/pkg
56
- export PKG_CACHE_PATH=~/.cache/pkg
57
- export PKG_IGNORE_TAG=true
58
48
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
60
50
npm run pkg -- --bundle --skip-build --arch=armv7
61
51
62
52
- name : Upload artifacts
You can’t perform that action at this time.
0 commit comments