We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a0bff commit 2286d5eCopy full SHA for 2286d5e
.github/workflows/test.yml
@@ -23,6 +23,8 @@ jobs:
23
feature: "22_0"
24
- os: "macos-11"
25
feature: "23_0"
26
+ - os: "windows-2019"
27
+ feature: "23_0"
28
29
steps:
30
- run: df -h
build.rs
@@ -41,6 +41,11 @@ fn download_filename() -> String {
41
format!("bitcoin-{}-aarch64-linux-gnu.tar.gz", &VERSION)
42
}
43
44
+#[cfg(all(target_os = "windows", target_arch = "x86_64"))]
45
+fn download_filename() -> String {
46
+ format!("bitcoin-{}-win64-unsigned.tar.gz", &VERSION)
47
+}
48
+
49
fn get_expected_sha256(filename: &str) -> sha256::Hash {
50
let sha256sums_filename = format!("sha256/bitcoin-core-{}-SHA256SUMS", &VERSION);
51
#[cfg(any(
0 commit comments