Skip to content

Commit cdfc8fa

Browse files
committed
Read from env variables for the default web bundle
This commit makes it easy to override the default web bundle through the environment variables: - `TECTONIC_WEB_BUNDLE_PREFIX` - `TECTONIC_WEB_BUNDLE_LOCKED` The PREFIX variable makes it easy for people to track a mirrored bundle, while the LOCKED variable ensures reproducible builds across all CLIs.
1 parent c64e524 commit cdfc8fa

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

build.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,18 @@ fn main() {
77
// Re-export $TARGET during the build so that our executable tests know
88
// what environment variable CARGO_TARGET_@TARGET@_RUNNER to check when
99
// they want to spawn off executables.
10-
1110
let target = env::var("TARGET").unwrap();
1211
println!("cargo:rustc-env=TARGET={target}");
12+
13+
// Set the default web bundle for tectonic to use.
14+
// The `${web_bundle_prefix}` would lead to a url in the form of
15+
// `${web_bundle_prefix}/default_bundle.tar`, while the "locked" url,
16+
// if specified, can be used to pin the default bundle to a specific
17+
// version. This would be useful for reproducible builds.
18+
let web_bundle_prefix: String = env::var("TECTONIC_WEB_BUNDLE_PREFIX")
19+
.unwrap_or("https://relay.fullyjustified.net".to_owned());
20+
let web_bundle_locked: String = env::var("TECTONIC_WEB_BUNDLE_LOCKED")
21+
.unwrap_or("".to_owned());
22+
println!("cargo:rustc-env=TECTONIC_WEB_BUNDLE_PREFIX={web_bundle_prefix}");
23+
println!("cargo:rustc-env=TECTONIC_WEB_BUNDLE_LOCKED={web_bundle_locked}");
1324
}

crates/bundles/src/lib.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,23 @@ impl<B: Bundle + ?Sized> Bundle for Box<B> {
112112
/// low-level reliability problems and was blocked in China. We now use a custom
113113
/// webservice.
114114
pub fn get_fallback_bundle_url(format_version: u32) -> String {
115+
// Build time environment variables declared in `build.rs`:
116+
let web_bundle_locked = option_env!("TECTONIC_WEB_BUNDLE_LOCKED")
117+
.unwrap_or("");
118+
let web_bundle_prefix = option_env!("TECTONIC_WEB_BUNDLE_PREFIX")
119+
.unwrap_or("https://relay.fullyjustified.net");
120+
121+
// Simply return the locked url when it is specified:
122+
if !web_bundle_locked.is_empty() {
123+
return web_bundle_locked.to_owned();
124+
}
125+
115126
// Format version 32 (TeXLive 2021) was when we introduced versioning to the
116127
// URL.
117128
if format_version < 32 {
118-
"https://relay.fullyjustified.net/default_bundle.tar".to_owned()
129+
format!("{web_bundle_prefix}/default_bundle.tar")
119130
} else {
120-
format!("https://relay.fullyjustified.net/default_bundle_v{format_version}.tar")
131+
format!("{web_bundle_prefix}/default_bundle_v{format_version}.tar")
121132
}
122133
}
123134

0 commit comments

Comments
 (0)