fix: basalt build parallel level back to 2

This commit is contained in:
Gabriele Musco 2024-05-12 09:47:53 +02:00
parent ce99220c3f
commit b2ea86211e
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -39,7 +39,7 @@ pub fn get_build_basalt_jobs(profile: &Profile, clean_build: bool) -> VecDeque<W
);
let mut cmake_env: HashMap<String, String> = HashMap::new();
cmake_env.insert("CMAKE_BUILD_PARALLEL_LEVEL".into(), "15".into());
cmake_env.insert("CMAKE_BUILD_PARALLEL_LEVEL".into(), "2".into());
cmake_env.insert("CMAKE_BUILD_TYPE".into(), "RelWithDebInfo".into());
cmake_env.insert("BUILD_TESTS".into(), "off".into());