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 b7fe56a commit 67d4782Copy full SHA for 67d4782
relays/bin-substrate/src/cli/mod.rs
@@ -267,6 +267,7 @@ impl SubstrateRelayBuildInfo {
267
// locally we don't have `CI_*` env variables, so we can't rely on them
268
// => we are using `CI_*` env variables or else `rbtag`
269
let maybe_sha_from_ci = option_env!("CI_COMMIT_SHORT_SHA");
270
+ compile_error!(env!("CI_COMMIT_SHORT_SHA")); // TODO: remove me, just for test
271
maybe_sha_from_ci
272
.map(|short_sha| {
273
// we assume that on CI the copy is always clean
0 commit comments