File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ export BASE_BUILD_DIR=${BASE_BUILD_DIR:-$BASE_SCRATCH_DIR/build}
67
67
# The folder for previous release binaries.
68
68
# This folder exists only on the ci guest, and on the ci host as a volume.
69
69
export PREVIOUS_RELEASES_DIR=${PREVIOUS_RELEASES_DIR:- $BASE_ROOT_DIR / prev_releases}
70
- export SDK_URL=${SDK_URL:- https:// bitcoincore.org/ depends-sources/ sdks}
71
70
export CI_BASE_PACKAGES=${CI_BASE_PACKAGES:- build-essential libtool autotools-dev automake pkg-config bsdmainutils curl ca-certificates ccache python3 rsync git procps bison}
72
71
export GOAL=${GOAL:- install}
73
72
export DIR_QA_ASSETS=${DIR_QA_ASSETS:- ${BASE_SCRATCH_DIR} / qa-assets}
Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C.UTF-8
8
8
9
+ export SDK_URL=${SDK_URL:- https:// bitcoincore.org/ depends-sources/ sdks}
10
+
9
11
export CONTAINER_NAME=ci_macos_cross
10
12
export CI_IMAGE_NAME_TAG=ubuntu:22.04
11
13
export HOST=x86_64-apple-darwin
Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C.UTF-8
8
8
9
- export ASAN_OPTIONS=" detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1"
10
- export LSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/lsan"
11
- export TSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/tsan:halt_on_error=1:log_path=${BASE_SCRATCH_DIR} /sanitizer-output/tsan"
12
- export UBSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1:report_error_type=1"
13
-
14
9
if [ -z " $DANGER_RUN_CI_ON_HOST " ]; then
15
10
# Export all env vars to avoid missing some.
16
11
# Though, exclude those with newlines to avoid parsing problems.
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ export LC_ALL=C.UTF-8
8
8
9
9
set -ex
10
10
11
+ export ASAN_OPTIONS=" detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1"
12
+ export LSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/lsan"
13
+ export TSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/tsan:halt_on_error=1:log_path=${BASE_SCRATCH_DIR} /sanitizer-output/tsan"
14
+ export UBSAN_OPTIONS=" suppressions=${BASE_ROOT_DIR} /test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1:report_error_type=1"
15
+
11
16
if [ " $CI_OS_NAME " == " macos" ]; then
12
17
top -l 1 -s 0 | awk ' /PhysMem/ {print}'
13
18
echo " Number of CPUs: $( sysctl -n hw.logicalcpu) "
You can’t perform that action at this time.
0 commit comments