1ea88969fSopenharmony_cifn main() { 2ea88969fSopenharmony_ci if !version_check::is_feature_flaggable().unwrap_or(false) { 3ea88969fSopenharmony_ci println!("cargo:rustc-cfg=use_fallback"); 4ea88969fSopenharmony_ci } 5ea88969fSopenharmony_ci 6ea88969fSopenharmony_ci if version_check::is_max_version("1.38.0").unwrap_or(false) 7ea88969fSopenharmony_ci || !version_check::Channel::read().unwrap().is_stable() 8ea88969fSopenharmony_ci { 9ea88969fSopenharmony_ci println!("cargo:rustc-cfg=skip_ui_tests"); 10ea88969fSopenharmony_ci } 11ea88969fSopenharmony_ci} 12