mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
* Run git config earlier and only once * Run git merge in the yaml, before calling the bash script * Run git reset in the yaml as well, for symmetry * Replace "git merge --abort" with "git reset --hard", because it does not fail when already up to date and no merge was started.
19 lines
796 B
Bash
Executable file
19 lines
796 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
set -o errexit -o pipefail -o xtrace
|
|
|
|
|
|
echo "Running test-one-commit on $( git log -1 )"
|
|
|
|
# Use clang++, because it is a bit faster and uses less memory than g++
|
|
CC=clang CXX=clang++ cmake -B build -DWERROR=ON -DWITH_ZMQ=ON -DBUILD_GUI=ON -DBUILD_BENCH=ON -DBUILD_FUZZ_BINARY=ON -DWITH_BDB=ON -DWITH_USDT=ON -DCMAKE_CXX_FLAGS='-Wno-error=unused-member-function'
|
|
|
|
cmake --build build -j "$( nproc )" && ctest --output-on-failure --stop-on-failure --test-dir build -j "$( nproc )"
|
|
|
|
./build/test/functional/test_runner.py -j $(( $(nproc) * 2 )) --combinedlogslen=99999999
|