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 957d78c commit be8f656Copy full SHA for be8f656
.github/workflows/nightly-cranelift.yml
@@ -36,6 +36,8 @@ jobs:
36
37
cat Cargo.toml
38
39
+ cargo fetch
40
+
41
- name: Build without unstable features
42
# This is the config rust-lang/rust uses for builds
43
run: ./y.rs build --no-unstable-features
build_system/utils.rs
@@ -111,7 +111,8 @@ impl CargoProject {
111
.arg("--manifest-path")
112
.arg(self.manifest_path(dirs))
113
.arg("--target-dir")
114
- .arg(self.target_dir(dirs));
+ .arg(self.target_dir(dirs))
115
+ .arg("--frozen");
116
117
cmd
118
}
0 commit comments