fix: ci
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-12 20:05:27 +02:00
committed by Kasper Juul Hermansen
parent e1428a8fbb
commit 776db7274a
7 changed files with 24 additions and 220 deletions

View File

@@ -55,14 +55,6 @@ impl RustBuild {
let target_str = target.to_string();
let mut build_options = vec!["cargo", "build", "--target", &target_str, "--workspace"];
let entries = dep_src
.directory("crates/example_bin/src")
.entries()
.await?;
for entry in entries {
println!("entry: {}", entry);
}
if matches!(profile, BuildProfile::Release) {
build_options.push("--release");
}