Skip to content

Commit 5eee77b

Browse files
committed
ci: add RocksDB engine test step to PR check workflow
Add testWithRocksDb step to the build matrix in pr-check.yml, running only on x86_64 platforms. ARM64 builds already use RocksDB via Gradle systemProperty, so they don't need an extra run.
1 parent 1209a0c commit 5eee77b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/pr-check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,10 @@ jobs:
178178
- name: Build
179179
run: ./gradlew clean build --no-daemon
180180

181+
- name: Test with RocksDB engine
182+
if: matrix.arch == 'x86_64'
183+
run: ./gradlew :framework:testWithRocksDb --no-daemon
184+
181185
docker-build-rockylinux:
182186
name: Build rockylinux (JDK 8 / x86_64)
183187
if: github.event.action != 'edited' && !failure()

0 commit comments

Comments
 (0)