Skip to content

Commit 12fde8d

Browse files
JoshuaWisemceachen
andauthored
Update SQLite to version 3.44.0 (WiseLibs#1097)
* Update SQLite to version 3.44.0 * see pr#1099 * pip install setuptools * fix if * Add Node v21 to the build matrix --------- Co-authored-by: mceachen <[email protected]> Co-authored-by: Matthew McEachen <[email protected]>
1 parent 007d43e commit 12fde8d

File tree

6 files changed

+4317
-2369
lines changed

6 files changed

+4317
-2369
lines changed

.github/workflows/build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
workflow_dispatch: {}
1414

1515
env:
16-
NODE_BUILD_CMD: npx --no-install prebuild -r node -t 18.0.0 -t 20.0.0 --include-regex 'better_sqlite3.node$'
16+
NODE_BUILD_CMD: npx --no-install prebuild -r node -t 18.0.0 -t 20.0.0 -t 21.0.0 --include-regex 'better_sqlite3.node$'
1717
ELECTRON_BUILD_CMD: npx --no-install prebuild -r electron -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 -t 26.0.0 -t 27.0.0 --include-regex 'better_sqlite3.node$'
1818

1919
jobs:
@@ -27,13 +27,18 @@ jobs:
2727
node:
2828
- 18
2929
- 20
30+
- 21
3031
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
3132
runs-on: ${{ matrix.os }}
3233
steps:
3334
- uses: actions/checkout@v3
3435
- uses: actions/setup-node@v3
3536
with:
3637
node-version: ${{ matrix.node }}
38+
- if: ${{ startsWith(matrix.os, 'windows') }}
39+
run: pip.exe install setuptools
40+
- if: ${{ ! startsWith(matrix.os, 'windows') }}
41+
run: python3 -m pip install setuptools
3742
- run: npm install --ignore-scripts
3843
- run: npm run build-debug
3944
- run: npm test

deps/download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# ===
2020

2121
YEAR="2023"
22-
VERSION="3430200"
22+
VERSION="3440000"
2323

2424
# Defines below are sorted alphabetically
2525
DEFINES="

0 commit comments

Comments
 (0)