mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 03:29:36 +00:00
add a script to download prebuilds of monero_c (#1554)
Some checks failed
Cache Dependencies / test (push) Has been cancelled
Some checks failed
Cache Dependencies / test (push) Has been cancelled
This commit is contained in:
parent
2347f922fe
commit
d5fca1969e
2 changed files with 51 additions and 0 deletions
|
@ -124,6 +124,7 @@ dev_dependencies:
|
|||
git:
|
||||
url: https://github.com/cake-tech/google-translator.git
|
||||
version: 1.0.0
|
||||
archive: ^3.6.1
|
||||
|
||||
dependency_overrides:
|
||||
bech32:
|
||||
|
|
50
tool/download_moneroc_prebuilds.dart
Normal file
50
tool/download_moneroc_prebuilds.dart
Normal file
|
@ -0,0 +1,50 @@
|
|||
import 'package:dio/dio.dart';
|
||||
import 'package:archive/archive_io.dart';
|
||||
|
||||
final _dio = Dio();
|
||||
|
||||
final List<String> triplets = [
|
||||
"x86_64-linux-gnu", // linux desktop - majority of users onlinux
|
||||
// "i686-linux-gnu", // not supported by cake
|
||||
// "i686-meego-linux-gnu", // sailfishos (emulator)- not supported by cake
|
||||
// "aarch64-linux-gnu", // not (yet) supported by cake - (mostly) mobile linux
|
||||
// "aarch64-meego-linux-gnu", // sailfishos - not supported by cake
|
||||
"x86_64-linux-android",
|
||||
// "i686-linux-android", // not supported by monero_c - mostly old android emulators
|
||||
"aarch64-linux-android",
|
||||
"armv7a-linux-androideabi",
|
||||
// "i686-w64-mingw32", // 32bit windows - not supported by monero_c
|
||||
"x86_64-w64-mingw32",
|
||||
// "x86_64-apple-darwin11", // Intel macbooks (contrib) - not used by cake
|
||||
// "aarch64-apple-darwin11", // apple silicon macbooks (contrib) - not used by cake
|
||||
// "host-apple-darwin", // not available on CI (yet)
|
||||
// "x86_64-host-apple-darwin", // not available on CI (yet)
|
||||
"aarch64-host-apple-darwin", // apple silicon macbooks (local builds)
|
||||
"host-apple-ios",
|
||||
];
|
||||
|
||||
Future<void> main() async {
|
||||
final resp = await _dio.get("https://api.github.com/repos/mrcyjanek/monero_c/releases");
|
||||
final data = resp.data[0];
|
||||
final tagName = data['tag_name'];
|
||||
print("Downloading artifacts for: ${tagName}");
|
||||
final assets = data['assets'] as List<dynamic>;
|
||||
for (var i = 0; i < assets.length; i++) {
|
||||
for (var triplet in triplets) {
|
||||
final asset = assets[i];
|
||||
final filename = asset["name"] as String;
|
||||
if (!filename.contains(triplet)) continue;
|
||||
final coin = filename.split("_")[0];
|
||||
String localFilename = filename.replaceAll("${coin}_${triplet}_", "");
|
||||
localFilename = "scripts/monero_c/release/${coin}/${triplet}_${localFilename}";
|
||||
final url = asset["browser_download_url"] as String;
|
||||
print("- downloading $localFilename");
|
||||
await _dio.download(url, localFilename);
|
||||
print(" extracting $localFilename");
|
||||
final inputStream = InputFileStream(localFilename);
|
||||
final archive = XZDecoder().decodeBuffer(inputStream);
|
||||
final outputStream = OutputFileStream(localFilename.replaceAll(".xz", ""));
|
||||
outputStream.writeBytes(archive);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue