Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ jobs:
- name: Relink bin scripts
run: npm install --ignore-scripts

# re2 downloads its native binary from a post-install script (unlike lmdb/msgpackr/rocksdb,
# which bundle prebuilds), so --ignore-scripts above leaves it absent. Materialize it here.
- name: Build re2 native binary
run: npm rebuild re2

- name: Install harperdb@4 for legacy tests
run: |
mkdir -p /tmp/harperdb-legacy
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stress-large-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ jobs:
name: harper-large-stress-build-${{ inputs.node-version || '24' }}
- name: Relink bin scripts
run: npm install --ignore-scripts
# re2 downloads its native binary from a post-install script (unlike lmdb/msgpackr/rocksdb,
# which bundle prebuilds), so --ignore-scripts above leaves it absent. Materialize it here.
- name: Build re2 native binary
run: npm rebuild re2
- name: Run ${{ matrix.test.name }}
env:
HARPER_RUN_STRESS_TESTS: '1'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stress-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ jobs:
name: harper-stress-build-${{ inputs.node-version || '24' }}
- name: Relink bin scripts
run: npm install --ignore-scripts
# re2 downloads its native binary from a post-install script (unlike lmdb/msgpackr/rocksdb,
# which bundle prebuilds), so --ignore-scripts above leaves it absent. Materialize it here.
- name: Build re2 native binary
run: npm rebuild re2
- name: Run ${{ matrix.test.name }}
env:
HARPER_RUN_STRESS_TESTS: '1'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
- name: Install dependencies
run: npm install --ignore-scripts

# re2 downloads its native binary from a post-install script (unlike lmdb/msgpackr/rocksdb,
# which bundle prebuilds), so --ignore-scripts above leaves it absent. Materialize it here.
- name: Build re2 native binary
run: npm rebuild re2

- name: Build
run: npm run build || true

Expand Down
208 changes: 199 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@
"pkijs": "3.4.0",
"prompt": "1.3.0",
"properties-reader": "2.3.0",
"re2": "^1.26.0",
"recursive-iterator": "3.3.0",
"semver": "7.8.5",
"send": "^1.2.0",
Expand Down
Loading
Loading