Skip to content

Commit

Permalink
Update SQLite to version 3.44.0 (#1097)
Browse files Browse the repository at this point in the history
* 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 <mceachen@users.noreply.github.com>
Co-authored-by: Matthew McEachen <matthew@photostructure.com>
  • Loading branch information
3 people committed Nov 8, 2023
1 parent 007d43e commit 12fde8d
Show file tree
Hide file tree
Showing 6 changed files with 4,317 additions and 2,369 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
workflow_dispatch: {}

env:
NODE_BUILD_CMD: npx --no-install prebuild -r node -t 18.0.0 -t 20.0.0 --include-regex 'better_sqlite3.node$'
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$'
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$'

jobs:
Expand All @@ -27,13 +27,18 @@ jobs:
node:
- 18
- 20
- 21
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- if: ${{ startsWith(matrix.os, 'windows') }}
run: pip.exe install setuptools
- if: ${{ ! startsWith(matrix.os, 'windows') }}
run: python3 -m pip install setuptools
- run: npm install --ignore-scripts
- run: npm run build-debug
- run: npm test
Expand Down
2 changes: 1 addition & 1 deletion deps/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# ===

YEAR="2023"
VERSION="3430200"
VERSION="3440000"

# Defines below are sorted alphabetically
DEFINES="
Expand Down
Loading

0 comments on commit 12fde8d

Please sign in to comment.