Skip to content

Commit 38db2bd

Browse files
committed
Merge bitcoin/bitcoin#28320: test: Support riscv64 in get_previous_releases.py
2222e15 test: Support riscv64 in get_previous_releases.py (MarcoFalke) Pull request description: To test: `test/get_previous_releases.py -b -t /tmp/prev_releases v0.18.1` On master: `Not sure which binary to download for riscv64-unknown-linux-gnu` Here: (pass) ACKs for top commit: fanquake: ACK 2222e15 Tree-SHA512: 18dc9a6c65f78adb5f7fc09e57db34c6b544071cb7bb3fa2846c86a23202e37d6ea1c5aca9acc1c2040b7d2b97bb93840a8a949f81f71fe6f01c395d2894739d
2 parents 00fc7cd + 2222e15 commit 38db2bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/get_previous_releases.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (c) 2018-2022 The Bitcoin Core developers
3+
# Copyright (c) 2018-present The Bitcoin Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
#
@@ -250,6 +250,7 @@ def check_host(args) -> int:
250250
if args.download_binary:
251251
platforms = {
252252
'aarch64-*-linux*': 'aarch64-linux-gnu',
253+
'riscv64-*-linux*': 'riscv64-linux-gnu',
253254
'x86_64-*-linux*': 'x86_64-linux-gnu',
254255
'x86_64-apple-darwin*': 'x86_64-apple-darwin',
255256
'aarch64-apple-darwin*': 'arm64-apple-darwin',

0 commit comments

Comments
 (0)