Remove unused packages as part of build dependencies

The reproducible runtime test failed due to running out of space. If we have
multiple tests failing due to out of space, and all of our tests have these
unused, it makes sense just to always so uninstall.

Also extends the time limit of reproducible-runtime, as 2h has been hit a few
times before.
This commit is contained in:
Luke Parker
2023-10-10 21:09:45 -04:00
parent 9bf8c92325
commit 985795e99d
3 changed files with 7 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ pub fn reproducibly_builds() {
use dockertest::{PullPolicy, Image, Composition, DockerTest};
const RUNS: usize = 3;
const TIMEOUT: u16 = 120 * 60; // 120 minutes
const TIMEOUT: u16 = 180 * 60; // 3 hours
serai_docker_tests::build("runtime".to_string());