Skip to content

Commit 45419e4

Browse files
authored
Merge pull request #23 from rocicorp/mlaw/update
merge in wise/master, update bedrock commit to sqlite 3.51
2 parents 68f1f83 + b035d66 commit 45419e4

15 files changed

Lines changed: 6187 additions & 2983 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ env:
2323
jobs:
2424
test:
2525
strategy:
26+
fail-fast: false
2627
matrix:
2728
os:
2829
- ubuntu-22.04
@@ -56,7 +57,7 @@ jobs:
5657
- if: ${{ startsWith(matrix.os, 'ubuntu') && matrix.node >= 25 }}
5758
run: |
5859
sudo apt update
59-
sudo apt install -y gcc-10 g++-10 libreadline-dev libncurses5-dev
60+
sudo apt install -y gcc-11 g++-11 libreadline-dev libncurses5-dev
6061
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11 --slave /usr/bin/gcov gcov /usr/bin/gcov-11
6162
- run: npm install --ignore-scripts
6263
- run: npm run build-debug
@@ -121,6 +122,9 @@ jobs:
121122
if: ${{ github.event_name == 'release' }}
122123
name: Publishing to NPM
123124
runs-on: ubuntu-22.04
125+
permissions:
126+
id-token: write # Required for OIDC trusted publishing
127+
contents: read
124128
needs:
125129
- prebuild
126130
- prebuild-alpine
@@ -135,9 +139,9 @@ jobs:
135139
with:
136140
node-version: 20
137141
registry-url: https://registry.npmjs.org
138-
- run: npm publish
139-
env:
140-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
142+
- name: Upgrade npm for OIDC support
143+
run: npm install -g npm@latest
144+
- run: npm publish --provenance
141145

142146
prebuild:
143147
if: ${{ github.event_name == 'release' }}

deps/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# 4. node-gyp links the two resulting binaries to generate better_sqlite3.node.
1919
# ===
2020

21-
CHECKIN="54b88880"
21+
CHECKIN="0e862bc9ed7aa9ae"
2222

2323
# Defines below are sorted alphabetically
2424
DEFINES="

0 commit comments

Comments
 (0)