Skip to content

Commit 1de633c

Browse files
Merge branch 'develop' of https://github.com/dashpay/dash into develop
2 parents 87393b9 + acc2988 commit 1de633c

File tree

573 files changed

+2171
-1594
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

573 files changed

+2171
-1594
lines changed

.cirrus.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
env:
44
PACKAGE_MANAGER_INSTALL: "apt-get update && apt-get install -y"
5-
MAKEJOBS: "-j4"
5+
MAKEJOBS: "-j10"
66
DANGER_RUN_CI_ON_HOST: "1" # Containers will be discarded after the run, so there is no risk that the ci scripts modify the system
77
TEST_RUNNER_PORT_MIN: "14000" # Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
88
CI_FAILFAST_TEST_LEAVE_DANGLING: "1" # Cirrus CI does not care about dangling process and setting this variable avoids killing the CI script itself on error
@@ -33,6 +33,7 @@ global_task_template: &GLOBAL_TASK_TEMPLATE
3333
# https://cirrus-ci.org/faq/#are-there-any-limits
3434
# Each project has 16 CPU in total, assign 2 to each container, so that 8 tasks run in parallel
3535
cpu: 2
36+
greedy: true
3637
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-containers
3738
ccache_cache:
3839
folder: "/tmp/ccache_dir"
@@ -103,41 +104,41 @@ task:
103104
FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh"
104105

105106
task:
106-
name: '[depends, sanitizers: thread (TSan), no gui] [lunar]'
107+
name: '[TSan, depends, no gui] [lunar]'
107108
<< : *GLOBAL_TASK_TEMPLATE
108109
container:
109110
image: ubuntu:lunar
110111
cpu: 6 # Increase CPU and Memory to avoid timeout
111112
memory: 24G
112113
env:
113-
MAKEJOBS: "-j8"
114114
FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh"
115115

116116
task:
117-
name: '[depends, sanitizers: memory (MSan)] [jammy]'
117+
name: '[MSan, depends] [jammy]'
118118
<< : *GLOBAL_TASK_TEMPLATE
119119
container:
120120
image: ubuntu:jammy
121121
env:
122122
FILE_ENV: "./ci/test/00_setup_env_native_msan.sh"
123+
MAKEJOBS: "-j4" # Avoid excessive memory use due to MSan
123124

124125
task:
125-
name: '[no depends, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer] [hirsute]'
126+
name: '[ASan + LSan + UBSan + integer, no depends] [jammy]'
126127
<< : *GLOBAL_TASK_TEMPLATE
127128
container:
128-
image: ubuntu:hirsute
129+
image: ubuntu:jammy
129130
env:
130131
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
132+
MAKEJOBS: "-j4" # Avoid excessive memory use
131133

132134
task:
133-
name: '[no depends, sanitizers: fuzzer,address,undefined,integer] [jammy]'
135+
name: '[fuzzer,address,undefined,integer, no depends] [jammy]'
134136
<< : *GLOBAL_TASK_TEMPLATE
135137
container:
136138
image: ubuntu:jammy
137139
cpu: 4 # Increase CPU and memory to avoid timeout
138140
memory: 16G
139141
env:
140-
MAKEJOBS: "-j8"
141142
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"
142143

143144
task:
@@ -148,7 +149,6 @@ task:
148149
cpu: 4
149150
memory: 16G # The default memory is sometimes just a bit too small, so double everything
150151
env:
151-
MAKEJOBS: "-j8"
152152
FILE_ENV: "./ci/test/00_setup_env_native_multiprocess.sh"
153153

154154
task:
@@ -168,9 +168,9 @@ task:
168168
FILE_ENV: "./ci/test/00_setup_env_mac.sh"
169169

170170
task:
171-
name: 'macOS 11 native [gui] [no depends]'
171+
name: 'macOS 11 native [gui, sqlite only] [no depends]'
172172
brew_install_script:
173-
- brew install boost libevent berkeley-db@4 qt@5 miniupnpc ccache zeromq qrencode sqlite libtool automake pkg-config gnu-getopt
173+
- brew install boost libevent qt@5 miniupnpc ccache zeromq qrencode sqlite libtool automake pkg-config gnu-getopt
174174
<< : *GLOBAL_TASK_TEMPLATE
175175
macos_instance:
176176
# Use latest image, but hardcode version to avoid silent upgrades (and breaks)

build-aux/m4/ax_check_compile_flag.m4

+6-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ===========================================================================
2-
# http://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
2+
# https://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
33
# ===========================================================================
44
#
55
# SYNOPSIS
@@ -29,33 +29,12 @@
2929
# Copyright (c) 2008 Guido U. Draheim <[email protected]>
3030
# Copyright (c) 2011 Maarten Bosmans <[email protected]>
3131
#
32-
# This program is free software: you can redistribute it and/or modify it
33-
# under the terms of the GNU General Public License as published by the
34-
# Free Software Foundation, either version 3 of the License, or (at your
35-
# option) any later version.
36-
#
37-
# This program is distributed in the hope that it will be useful, but
38-
# WITHOUT ANY WARRANTY; without even the implied warranty of
39-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
40-
# Public License for more details.
41-
#
42-
# You should have received a copy of the GNU General Public License along
43-
# with this program. If not, see <http://www.gnu.org/licenses/>.
44-
#
45-
# As a special exception, the respective Autoconf Macro's copyright owner
46-
# gives unlimited permission to copy, distribute and modify the configure
47-
# scripts that are the output of Autoconf when processing the Macro. You
48-
# need not follow the terms of the GNU General Public License when using
49-
# or distributing such scripts, even though portions of the text of the
50-
# Macro appear in them. The GNU General Public License (GPL) does govern
51-
# all other use of the material that constitutes the Autoconf Macro.
52-
#
53-
# This special exception to the GPL applies to versions of the Autoconf
54-
# Macro released by the Autoconf Archive. When you make and distribute a
55-
# modified version of the Autoconf Macro, you may extend this special
56-
# exception to the GPL to apply to your modified version as well.
32+
# Copying and distribution of this file, with or without modification, are
33+
# permitted in any medium without royalty provided the copyright notice
34+
# and this notice are preserved. This file is offered as-is, without any
35+
# warranty.
5736

58-
#serial 4
37+
#serial 6
5938

6039
AC_DEFUN([AX_CHECK_COMPILE_FLAG],
6140
[AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF

build-aux/m4/ax_check_link_flag.m4

+6-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ===========================================================================
2-
# http://www.gnu.org/software/autoconf-archive/ax_check_link_flag.html
2+
# https://www.gnu.org/software/autoconf-archive/ax_check_link_flag.html
33
# ===========================================================================
44
#
55
# SYNOPSIS
@@ -29,33 +29,12 @@
2929
# Copyright (c) 2008 Guido U. Draheim <[email protected]>
3030
# Copyright (c) 2011 Maarten Bosmans <[email protected]>
3131
#
32-
# This program is free software: you can redistribute it and/or modify it
33-
# under the terms of the GNU General Public License as published by the
34-
# Free Software Foundation, either version 3 of the License, or (at your
35-
# option) any later version.
36-
#
37-
# This program is distributed in the hope that it will be useful, but
38-
# WITHOUT ANY WARRANTY; without even the implied warranty of
39-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
40-
# Public License for more details.
41-
#
42-
# You should have received a copy of the GNU General Public License along
43-
# with this program. If not, see <http://www.gnu.org/licenses/>.
44-
#
45-
# As a special exception, the respective Autoconf Macro's copyright owner
46-
# gives unlimited permission to copy, distribute and modify the configure
47-
# scripts that are the output of Autoconf when processing the Macro. You
48-
# need not follow the terms of the GNU General Public License when using
49-
# or distributing such scripts, even though portions of the text of the
50-
# Macro appear in them. The GNU General Public License (GPL) does govern
51-
# all other use of the material that constitutes the Autoconf Macro.
52-
#
53-
# This special exception to the GPL applies to versions of the Autoconf
54-
# Macro released by the Autoconf Archive. When you make and distribute a
55-
# modified version of the Autoconf Macro, you may extend this special
56-
# exception to the GPL to apply to your modified version as well.
32+
# Copying and distribution of this file, with or without modification, are
33+
# permitted in any medium without royalty provided the copyright notice
34+
# and this notice are preserved. This file is offered as-is, without any
35+
# warranty.
5736

58-
#serial 4
37+
#serial 6
5938

6039
AC_DEFUN([AX_CHECK_LINK_FLAG],
6140
[AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF

build-aux/m4/ax_check_preproc_flag.m4

+6-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ===========================================================================
2-
# http://www.gnu.org/software/autoconf-archive/ax_check_preproc_flag.html
2+
# https://www.gnu.org/software/autoconf-archive/ax_check_preproc_flag.html
33
# ===========================================================================
44
#
55
# SYNOPSIS
@@ -29,33 +29,12 @@
2929
# Copyright (c) 2008 Guido U. Draheim <[email protected]>
3030
# Copyright (c) 2011 Maarten Bosmans <[email protected]>
3131
#
32-
# This program is free software: you can redistribute it and/or modify it
33-
# under the terms of the GNU General Public License as published by the
34-
# Free Software Foundation, either version 3 of the License, or (at your
35-
# option) any later version.
36-
#
37-
# This program is distributed in the hope that it will be useful, but
38-
# WITHOUT ANY WARRANTY; without even the implied warranty of
39-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
40-
# Public License for more details.
41-
#
42-
# You should have received a copy of the GNU General Public License along
43-
# with this program. If not, see <http://www.gnu.org/licenses/>.
44-
#
45-
# As a special exception, the respective Autoconf Macro's copyright owner
46-
# gives unlimited permission to copy, distribute and modify the configure
47-
# scripts that are the output of Autoconf when processing the Macro. You
48-
# need not follow the terms of the GNU General Public License when using
49-
# or distributing such scripts, even though portions of the text of the
50-
# Macro appear in them. The GNU General Public License (GPL) does govern
51-
# all other use of the material that constitutes the Autoconf Macro.
52-
#
53-
# This special exception to the GPL applies to versions of the Autoconf
54-
# Macro released by the Autoconf Archive. When you make and distribute a
55-
# modified version of the Autoconf Macro, you may extend this special
56-
# exception to the GPL to apply to your modified version as well.
32+
# Copying and distribution of this file, with or without modification, are
33+
# permitted in any medium without royalty provided the copyright notice
34+
# and this notice are preserved. This file is offered as-is, without any
35+
# warranty.
5736

58-
#serial 4
37+
#serial 6
5938

6039
AC_DEFUN([AX_CHECK_PREPROC_FLAG],
6140
[AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF

build-aux/m4/bitcoin_find_bdb48.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ dnl Distributed under the MIT software license, see the accompanying
33
dnl file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
AC_DEFUN([BITCOIN_FIND_BDB48],[
6-
AC_ARG_VAR(BDB_CFLAGS, [C compiler flags for BerkeleyDB, bypasses autodetection])
7-
AC_ARG_VAR(BDB_LIBS, [Linker flags for BerkeleyDB, bypasses autodetection])
6+
AC_ARG_VAR([BDB_CFLAGS], [C compiler flags for BerkeleyDB, bypasses autodetection])
7+
AC_ARG_VAR([BDB_LIBS], [Linker flags for BerkeleyDB, bypasses autodetection])
88
99
if test "x$use_bdb" = "xno"; then
1010
use_bdb=no

build-aux/m4/bitcoin_qt.m4

+19-19
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ dnl Output: $1 is set to the path of $2 if found. $2 are searched in order.
3636
AC_DEFUN([BITCOIN_QT_PATH_PROGS],[
3737
BITCOIN_QT_CHECK([
3838
if test "x$3" != x; then
39-
AC_PATH_PROGS($1,$2,,$3)
39+
AC_PATH_PROGS([$1], [$2], [], [$3])
4040
else
41-
AC_PATH_PROGS($1,$2)
41+
AC_PATH_PROGS([$1], [$2])
4242
fi
4343
if test "x$$1" = x && test "x$4" != xyes; then
4444
BITCOIN_QT_FAIL([$1 not found])
@@ -139,29 +139,29 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
139139
140140
if test "x$TARGET_OS" != xandroid; then
141141
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QMinimalIntegrationPlugin], [-lqminimal])
142-
AC_DEFINE(QT_QPA_PLATFORM_MINIMAL, 1, [Define this symbol if the minimal qt platform exists])
142+
AC_DEFINE([QT_QPA_PLATFORM_MINIMAL], [1], [Define this symbol if the minimal qt platform exists])
143143
fi
144144
if test "x$TARGET_OS" = xwindows; then
145145
dnl Linking against wtsapi32 is required. See #17749 and
146146
dnl https://bugreports.qt.io/browse/QTBUG-27097.
147147
AX_CHECK_LINK_FLAG([-lwtsapi32], [QT_LIBS="$QT_LIBS -lwtsapi32"], [AC_MSG_ERROR([could not link against -lwtsapi32])])
148148
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QWindowsIntegrationPlugin], [-lqwindows])
149149
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QWindowsVistaStylePlugin], [-lqwindowsvistastyle])
150-
AC_DEFINE(QT_QPA_PLATFORM_WINDOWS, 1, [Define this symbol if the qt platform is windows])
150+
AC_DEFINE([QT_QPA_PLATFORM_WINDOWS], [1], [Define this symbol if the qt platform is windows])
151151
elif test "x$TARGET_OS" = xlinux; then
152152
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QXcbIntegrationPlugin], [-lqxcb])
153-
AC_DEFINE(QT_QPA_PLATFORM_XCB, 1, [Define this symbol if the qt platform is xcb])
153+
AC_DEFINE([QT_QPA_PLATFORM_XCB], [1], [Define this symbol if the qt platform is xcb])
154154
elif test "x$TARGET_OS" = xdarwin; then
155-
AX_CHECK_LINK_FLAG([[-framework Carbon]],[QT_LIBS="$QT_LIBS -framework Carbon"],[AC_MSG_ERROR(could not link against Carbon framework)])
156-
AX_CHECK_LINK_FLAG([[-framework IOSurface]],[QT_LIBS="$QT_LIBS -framework IOSurface"],[AC_MSG_ERROR(could not link against IOSurface framework)])
157-
AX_CHECK_LINK_FLAG([[-framework Metal]],[QT_LIBS="$QT_LIBS -framework Metal"],[AC_MSG_ERROR(could not link against Metal framework)])
158-
AX_CHECK_LINK_FLAG([[-framework QuartzCore]],[QT_LIBS="$QT_LIBS -framework QuartzCore"],[AC_MSG_ERROR(could not link against QuartzCore framework)])
155+
AX_CHECK_LINK_FLAG([-framework Carbon], [QT_LIBS="$QT_LIBS -framework Carbon"], [AC_MSG_ERROR(could not link against Carbon framework)])
156+
AX_CHECK_LINK_FLAG([-framework IOSurface], [QT_LIBS="$QT_LIBS -framework IOSurface"], [AC_MSG_ERROR(could not link against IOSurface framework)])
157+
AX_CHECK_LINK_FLAG([-framework Metal], [QT_LIBS="$QT_LIBS -framework Metal"], [AC_MSG_ERROR(could not link against Metal framework)])
158+
AX_CHECK_LINK_FLAG([-framework QuartzCore], [QT_LIBS="$QT_LIBS -framework QuartzCore"], [AC_MSG_ERROR(could not link against QuartzCore framework)])
159159
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QCocoaIntegrationPlugin], [-lqcocoa])
160160
_BITCOIN_QT_CHECK_STATIC_PLUGIN([QMacStylePlugin], [-lqmacstyle])
161-
AC_DEFINE(QT_QPA_PLATFORM_COCOA, 1, [Define this symbol if the qt platform is cocoa])
161+
AC_DEFINE([QT_QPA_PLATFORM_COCOA], [1], [Define this symbol if the qt platform is cocoa])
162162
elif test "x$TARGET_OS" = xandroid; then
163163
QT_LIBS="-Wl,--export-dynamic,--undefined=JNI_OnLoad -lplugins_platforms_qtforandroid${qt_lib_suffix} -ljnigraphics -landroid -lqtfreetype${qt_lib_suffix} $QT_LIBS"
164-
AC_DEFINE(QT_QPA_PLATFORM_ANDROID, 1, [Define this symbol if the qt platform is android])
164+
AC_DEFINE([QT_QPA_PLATFORM_ANDROID], [1], [Define this symbol if the qt platform is android])
165165
fi
166166
fi
167167
CPPFLAGS=$TEMP_CPPFLAGS
@@ -174,7 +174,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
174174
175175
if test "x$use_hardening" != xno; then
176176
BITCOIN_QT_CHECK([
177-
AC_MSG_CHECKING(whether -fPIE can be used with this Qt config)
177+
AC_MSG_CHECKING([whether -fPIE can be used with this Qt config])
178178
TEMP_CPPFLAGS=$CPPFLAGS
179179
TEMP_CXXFLAGS=$CXXFLAGS
180180
CPPFLAGS="$QT_INCLUDES $CORE_CPPFLAGS $CPPFLAGS"
@@ -190,15 +190,15 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
190190
choke
191191
#endif
192192
]])],
193-
[ AC_MSG_RESULT(yes); QT_PIE_FLAGS=$PIE_FLAGS ],
194-
[ AC_MSG_RESULT(no); QT_PIE_FLAGS=$PIC_FLAGS]
193+
[ AC_MSG_RESULT([yes]); QT_PIE_FLAGS=$PIE_FLAGS ],
194+
[ AC_MSG_RESULT([no]); QT_PIE_FLAGS=$PIC_FLAGS]
195195
)
196196
CPPFLAGS=$TEMP_CPPFLAGS
197197
CXXFLAGS=$TEMP_CXXFLAGS
198198
])
199199
else
200200
BITCOIN_QT_CHECK([
201-
AC_MSG_CHECKING(whether -fPIC is needed with this Qt config)
201+
AC_MSG_CHECKING([whether -fPIC is needed with this Qt config])
202202
TEMP_CPPFLAGS=$CPPFLAGS
203203
CPPFLAGS="$QT_INCLUDES $CORE_CPPFLAGS $CPPFLAGS"
204204
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
@@ -212,8 +212,8 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
212212
choke
213213
#endif
214214
]])],
215-
[ AC_MSG_RESULT(no)],
216-
[ AC_MSG_RESULT(yes); QT_PIE_FLAGS=$PIC_FLAGS]
215+
[ AC_MSG_RESULT([no])],
216+
[ AC_MSG_RESULT([yes]); QT_PIE_FLAGS=$PIC_FLAGS]
217217
)
218218
CPPFLAGS=$TEMP_CPPFLAGS
219219
])
@@ -247,12 +247,12 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
247247
BITCOIN_QT_CHECK([
248248
MOC_DEFS="${MOC_DEFS} -DQ_OS_MAC"
249249
base_frameworks="-framework Foundation -framework AppKit"
250-
AX_CHECK_LINK_FLAG([[$base_frameworks]],[QT_LIBS="$QT_LIBS $base_frameworks"],[AC_MSG_ERROR(could not find base frameworks)])
250+
AX_CHECK_LINK_FLAG([$base_frameworks], [QT_LIBS="$QT_LIBS $base_frameworks"], [AC_MSG_ERROR(could not find base frameworks)])
251251
])
252252
;;
253253
*mingw*)
254254
BITCOIN_QT_CHECK([
255-
AX_CHECK_LINK_FLAG([[-mwindows]],[QT_LDFLAGS="$QT_LDFLAGS -mwindows"],[AC_MSG_WARN(-mwindows linker support not detected)])
255+
AX_CHECK_LINK_FLAG([-mwindows], [QT_LDFLAGS="$QT_LDFLAGS -mwindows"], [AC_MSG_WARN([-mwindows linker support not detected])])
256256
])
257257
esac
258258

ci/dash/build_depends.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ source ./ci/dash/matrix.sh
1414
unset CC; unset CXX
1515
unset DISPLAY
1616

17-
mkdir -p $CACHE_DIR/depends
18-
mkdir -p $CACHE_DIR/sdk-sources
17+
mkdir -p "$CACHE_DIR/depends"
18+
mkdir -p "$CACHE_DIR/sdk-sources"
1919

20-
ln -s $CACHE_DIR/depends ${DEPENDS_DIR}/built
21-
ln -s $CACHE_DIR/sdk-sources ${DEPENDS_DIR}/sdk-sources
20+
ln -s "$CACHE_DIR/depends" "${DEPENDS_DIR}/built"
21+
ln -s "$CACHE_DIR/sdk-sources" "${DEPENDS_DIR}/sdk-sources"
2222

2323
if [[ "${HOST}" == "x86_64-apple-darwin" ]]; then
2424
./contrib/containers/guix/scripts/setup-sdk
2525
fi
2626

27-
make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
27+
make "$MAKEJOBS" -C depends HOST="$HOST" "$DEP_OPTS"

0 commit comments

Comments
 (0)