Skip to content

Commit f66738f

Browse files
committed
Merge bitcoin/bitcoin#30542: ci: enable berkley db on test each commit job
93ee17c ci: enable berkley db on test each commit job (Max Edwards) Pull request description: As the "test each commit" job installs `libdb++-dev` it looks like it was intended that it would compile with Berkeley DB support. This PR enables it. CI run log with the change: https://github.com/m3dwards/bitcoin/actions/runs/10142921800/job/28043223197?pr=1 ACKs for top commit: maflcko: ACK 93ee17c danielabrozzoni: ACK 93ee17c hebasto: ACK 93ee17c. Tree-SHA512: b6c2a7cea104a84221814fd121fd4fef2d7c0c3717f8c3fe35ec3c42e850e72085e9e6407b61ca1f9e86571346fa33a2cdd924210b26155956835011775320b2
2 parents c9b7a79 + 93ee17c commit f66738f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
# Run tests on commits after the last merge commit and before the PR head commit
7474
# Use clang++, because it is a bit faster and uses less memory than g++
75-
git rebase --exec "echo Running test-one-commit on \$( git log -1 ) && ./autogen.sh && CC=clang CXX=clang++ ./configure && make clean && make -j $(nproc) check && ./test/functional/test_runner.py -j $(( $(nproc) * 2 ))" ${{ env.TEST_BASE }}
75+
git rebase --exec "echo Running test-one-commit on \$( git log -1 ) && ./autogen.sh && CC=clang CXX=clang++ ./configure --with-incompatible-bdb && make clean && make -j $(nproc) check && ./test/functional/test_runner.py -j $(( $(nproc) * 2 ))" ${{ env.TEST_BASE }}
7676
7777
macos-native-x86_64:
7878
name: 'macOS 13 native, x86_64, no depends, sqlite only, gui'

0 commit comments

Comments
 (0)