mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Merge branch 'develop' into ripple/smart-escrow
This commit is contained in:
4
.github/scripts/strategy-matrix/generate.py
vendored
4
.github/scripts/strategy-matrix/generate.py
vendored
@@ -123,6 +123,10 @@ def generate_strategy_matrix(all: bool, architecture: list[dict], os: list[dict]
|
||||
if os['distro_name'] == 'rhel' and architecture['platform'] == 'linux/arm64':
|
||||
continue
|
||||
|
||||
# We skip all clang-20 on arm64 due to boost 1.86 build error
|
||||
if f'{os['compiler_name']}-{os['compiler_version']}' == 'clang-20' and architecture['platform'] == 'linux/arm64':
|
||||
continue
|
||||
|
||||
# Generate a unique name for the configuration, e.g. macos-arm64-debug
|
||||
# or debian-bookworm-gcc-12-amd64-release-unity.
|
||||
config_name = os['distro_name']
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -110,4 +110,4 @@ bld.rippled/
|
||||
.vscode
|
||||
|
||||
# Suggested in-tree build directory
|
||||
/.build/
|
||||
/.build*/
|
||||
|
||||
@@ -499,7 +499,16 @@ Env::meta()
|
||||
close();
|
||||
}
|
||||
auto const item = closed()->txRead(txid_);
|
||||
return item.second;
|
||||
auto const result = item.second;
|
||||
if (result == nullptr)
|
||||
{
|
||||
test.log << "Env::meta: no metadata for txid: " << txid_ << std::endl;
|
||||
test.log << "This is probably because the transaction failed with a "
|
||||
"non-tec error."
|
||||
<< std::endl;
|
||||
Throw<std::runtime_error>("Env::meta: no metadata for txid");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
std::shared_ptr<STTx const>
|
||||
|
||||
Reference in New Issue
Block a user