Skip to content

Commit 388a6b3

Browse files
committed
Downloading the binaries through a proxy if either HTTPS_PROXY or HTTP_PROXY environment variable is set.
closes #48
1 parent fed768c commit 388a6b3

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
fail-fast: false
7474
matrix:
75-
toolchain: [ "1.41.1", "stable", "nightly" ]
75+
toolchain: [ "1.42", "stable", "nightly" ]
7676

7777
steps:
7878
- uses: actions/checkout@v2

build.rs

+12-3
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,19 @@ mod download {
114114
);
115115
println!("url:{}", url);
116116
let mut downloaded_bytes = Vec::new();
117-
let resp = ureq::get(&url).call().unwrap();
118-
assert_eq!(resp.status(), 200, "url {} didn't return 200", url);
119117

120-
let _size = resp
118+
let http_proxy = std::env::var("HTTPS_PROXY").or_else(|_| std::env::var("HTTP_PROXY"));
119+
let agent = if let Ok(proxy) = http_proxy {
120+
let proxy = ureq::Proxy::new(proxy).unwrap();
121+
ureq::AgentBuilder::new().proxy(proxy).build()
122+
} else {
123+
ureq::AgentBuilder::new().build()
124+
};
125+
126+
let _size = agent
127+
.get(&url)
128+
.call()
129+
.unwrap()
121130
.into_reader()
122131
.read_to_end(&mut downloaded_bytes)
123132
.unwrap();

0 commit comments

Comments
 (0)