mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-25 10:23:23 +00:00
Enhance OSDK performance by reusing existing base, bundle and build
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
3bbdc68d39
commit
858e95ed4d
@ -57,7 +57,10 @@ pub fn create_workspace(workspace_name: &str, members: &[&str]) {
|
||||
.map(|member| toml::Value::String(member.to_string()))
|
||||
.collect();
|
||||
|
||||
let exclude = toml::Value::Array(vec![toml::Value::String("target/osdk/base".to_string())]);
|
||||
let exclude = toml::Value::Array(vec![
|
||||
toml::Value::String("target/osdk/base".to_string()),
|
||||
toml::Value::String("target/osdk/test-base".to_string()),
|
||||
]);
|
||||
|
||||
table.insert("members".to_string(), toml::Value::Array(members));
|
||||
table.insert("exclude".to_string(), exclude);
|
||||
|
Reference in New Issue
Block a user