duckdb 0.9.2-dev16.0 → 0.9.2-dev20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/NodeJS.yml +6 -24
- package/package.json +1 -1
@@ -2,6 +2,8 @@ name: NodeJS
|
|
2
2
|
on:
|
3
3
|
push:
|
4
4
|
pull_request:
|
5
|
+
workflow_dispatch:
|
6
|
+
repository_dispatch:
|
5
7
|
|
6
8
|
concurrency:
|
7
9
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
|
@@ -34,6 +36,7 @@ jobs:
|
|
34
36
|
name: node.js Linux
|
35
37
|
runs-on: ubuntu-20.04
|
36
38
|
needs: set-up-npm
|
39
|
+
continue-on-error: ${{ matrix.node != '18' && matrix.node != '20' && matrix.node != '21' }}
|
37
40
|
env:
|
38
41
|
TARGET_ARCH: ${{ matrix.target_arch }}
|
39
42
|
DUCKDB_NODE_BUILD_CACHE: 0
|
@@ -47,40 +50,17 @@ jobs:
|
|
47
50
|
exclude:
|
48
51
|
- isRelease: false
|
49
52
|
node: 12
|
50
|
-
target_arch: x64
|
51
53
|
- isRelease: false
|
52
54
|
node: 14
|
53
|
-
target_arch: x64
|
54
55
|
- isRelease: false
|
55
56
|
node: 16
|
56
|
-
target_arch: x64
|
57
57
|
- isRelease: false
|
58
58
|
node: 17
|
59
|
-
target_arch: x64
|
60
|
-
- isRelease: false
|
61
|
-
node: 18
|
62
|
-
target_arch: x64
|
63
59
|
- isRelease: false
|
64
60
|
node: 19
|
65
|
-
target_arch: x64
|
66
|
-
- isRelease: false
|
67
|
-
node: 12
|
68
|
-
target_arch: arm64
|
69
|
-
- isRelease: false
|
70
|
-
node: 14
|
71
|
-
target_arch: arm64
|
72
|
-
- isRelease: false
|
73
|
-
node: 16
|
74
|
-
target_arch: arm64
|
75
|
-
- isRelease: false
|
76
|
-
node: 17
|
77
|
-
target_arch: arm64
|
78
61
|
- isRelease: false
|
79
62
|
node: 18
|
80
63
|
target_arch: arm64
|
81
|
-
- isRelease: false
|
82
|
-
node: 19
|
83
|
-
target_arch: arm64
|
84
64
|
- isRelease: false
|
85
65
|
node: 20
|
86
66
|
target_arch: arm64
|
@@ -130,6 +110,7 @@ jobs:
|
|
130
110
|
name: node.js OSX
|
131
111
|
runs-on: macos-latest
|
132
112
|
needs: linux-nodejs
|
113
|
+
continue-on-error: ${{ matrix.node != '18' && matrix.node != '20' && matrix.node != '21' }}
|
133
114
|
strategy:
|
134
115
|
matrix:
|
135
116
|
target_arch: [ x64, arm64 ]
|
@@ -146,7 +127,7 @@ jobs:
|
|
146
127
|
- isRelease: false
|
147
128
|
node: 17
|
148
129
|
- isRelease: false
|
149
|
-
node:
|
130
|
+
node: 19
|
150
131
|
- target_arch: arm64
|
151
132
|
node: 12
|
152
133
|
- target_arch: arm64
|
@@ -187,6 +168,7 @@ jobs:
|
|
187
168
|
name: node.js Windows
|
188
169
|
runs-on: windows-latest
|
189
170
|
needs: linux-nodejs
|
171
|
+
continue-on-error: ${{ matrix.node != '18' && matrix.node != '20' && matrix.node != '21' }}
|
190
172
|
env:
|
191
173
|
npm_config_msvs_version: 2019
|
192
174
|
|