Skip to content

Commit 3423fb8

Browse files
committed
Merge #451: ci: Disable external signer in native macOS CI job
6efec3c ci: Disable external signer in native macOS CI job (Hennadii Stepanov) Pull request description: Boost.Process 1.88 currently fails the configure [test](https://productionresultssa16.blob.core.windows.net/actions-results/0ee8b7d3-ee80-4e02-95c9-26926d87feff/workflow-job-run-34483c37-ddff-5fd9-acd1-9278d41ea7f6/logs/job/job-logs.txt?rsct=text%2Fplain&se=2025-05-11T16%3A57%3A24Z&sig=E8L2q6b3h9ur0fQOGqN5FciniQfPvX1Z2t3dxBPfRPs%3D&ske=2025-05-12T02%3A05%3A35Z&skoid=ca7593d4-ee42-46cd-af88-8b886a2f84eb&sks=b&skt=2025-05-11T14%3A05%3A35Z&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skv=2025-05-05&sp=r&spr=https&sr=b&st=2025-05-11T16%3A47%3A19Z&sv=2025-05-05): ``` 2025-05-06T15:12:35.6692210Z configure:37666: checking whether Boost.Process can be used 2025-05-06T15:12:35.6693270Z configure:37697: g++ -std=gnu++11 -std=c++17 -o conftest -g -O2 -Wno-error=narrowing -isystem /usr/local/include -DBOOST_MULTI_INDEX_DISABLE_SERIALIZATION -pthread conftest.cpp >&5 2025-05-06T15:12:35.6694210Z conftest.cpp:82:9: error: no type named 'opstream' in namespace 'boost::process' 2025-05-06T15:12:35.6694340Z bp::opstream stdin_stream; 2025-05-06T15:12:35.6694430Z ~~~~^ 2025-05-06T15:12:35.6694890Z conftest.cpp:83:18: error: use of undeclared identifier 'stdout_stream'; did you mean 'stdin_stream'? 2025-05-06T15:12:35.6695030Z bp::ipstream stdout_stream; 2025-05-06T15:12:35.6695120Z ^~~~~~~~~~~~~ 2025-05-06T15:12:35.6695220Z stdin_stream 2025-05-06T15:12:35.6695440Z conftest.cpp:82:18: note: 'stdin_stream' declared here 2025-05-06T15:12:35.6695560Z bp::opstream stdin_stream; 2025-05-06T15:12:35.6695650Z ^ 2025-05-06T15:12:35.6695870Z conftest.cpp:83:17: error: expected ';' after expression 2025-05-06T15:12:35.6696000Z bp::ipstream stdout_stream; 2025-05-06T15:12:35.6696090Z ^ 2025-05-06T15:12:35.6696180Z ; 2025-05-06T15:12:35.6696530Z conftest.cpp:83:9: error: no member named 'ipstream' in namespace 'boost::process' 2025-05-06T15:12:35.6696650Z bp::ipstream stdout_stream; 2025-05-06T15:12:35.6696740Z ~~~~^ 2025-05-06T15:12:35.6696960Z conftest.cpp:84:14: error: expected ';' after expression 2025-05-06T15:12:35.6697380Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6697480Z ^ 2025-05-06T15:12:35.6697570Z ; 2025-05-06T15:12:35.6697900Z conftest.cpp:84:9: error: no member named 'child' in namespace 'boost::process' 2025-05-06T15:12:35.6698310Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6698400Z ~~~~^ 2025-05-06T15:12:35.6698730Z conftest.cpp:84:88: error: no member named 'std_in' in namespace 'boost::process' 2025-05-06T15:12:35.6699150Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6699270Z ~~~~^ 2025-05-06T15:12:35.6699610Z conftest.cpp:84:30: error: no member named 'std_out' in namespace 'boost::process' 2025-05-06T15:12:35.6700020Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6700120Z ~~~~^ 2025-05-06T15:12:35.6700410Z conftest.cpp:84:40: error: use of undeclared identifier 'stdout_stream' 2025-05-06T15:12:35.6700820Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6700930Z ^ 2025-05-06T15:12:35.6701260Z conftest.cpp:84:59: error: no member named 'std_err' in namespace 'boost::process' 2025-05-06T15:12:35.6702110Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6702230Z ~~~~^ 2025-05-06T15:12:35.6702510Z conftest.cpp:84:69: error: use of undeclared identifier 'stdout_stream' 2025-05-06T15:12:35.6702920Z bp::child c("dummy", bp::std_out > stdout_stream, bp::std_err > stdout_stream, bp::std_in < stdin_stream); 2025-05-06T15:12:35.6703310Z ^ 2025-05-06T15:12:35.6703720Z conftest.cpp:86:9: error: use of undeclared identifier 'c' 2025-05-06T15:12:35.6703990Z if (c.running()) c.terminate(); 2025-05-06T15:12:35.6704080Z ^ 2025-05-06T15:12:35.6704310Z conftest.cpp:86:22: error: use of undeclared identifier 'c' 2025-05-06T15:12:35.6704430Z if (c.running()) c.terminate(); 2025-05-06T15:12:35.6704530Z ^ 2025-05-06T15:12:35.6704750Z conftest.cpp:87:5: error: use of undeclared identifier 'c' 2025-05-06T15:12:35.6705050Z c.wait(); 2025-05-06T15:12:35.6705150Z ^ 2025-05-06T15:12:35.6705490Z conftest.cpp:88:5: error: use of undeclared identifier 'c' 2025-05-06T15:12:35.6705610Z c.exit_code(); 2025-05-06T15:12:35.6705700Z ^ 2025-05-06T15:12:35.6705960Z 15 errors generated. ``` So disable the external signer to avoid CI failures. Top commit has no ACKs. Tree-SHA512: 2c8a85d5c057732fbd0186a8233618b7e79391e76fe6a4f48c351189c214dbf91d742e364b2f19bbdfcae705bea6f29e4a56f342e1b6688f137c116f3a631b6a
2 parents 2e7bef0 + 6efec3c commit 3423fb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/test/00_setup_env_mac_native.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export LC_ALL=C.UTF-8
99
export HOST=x86_64-apple-darwin
1010
export PIP_PACKAGES="zmq"
1111
export GOAL="install"
12-
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports"
12+
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports --disable-external-signer"
1313
export CI_OS_NAME="macos"
1414
export NO_DEPENDS=1
1515
export OSX_SDK=""

0 commit comments

Comments
 (0)