Compare commits

..

16 Commits

Author SHA1 Message Date
Omar Abdulla f9868617a4 Update the new geth test 2025-10-05 18:00:47 +03:00
Omar Abdulla 99b2618328 Ignore certain tests 2025-10-05 17:52:09 +03:00
Omar Abdulla 329440c05e Update the lighthouse ports 2025-10-05 16:54:41 +03:00
Omar Abdulla bd8ee26297 Cleanups 2025-10-05 16:26:03 +03:00
Omar Abdulla 970917ca43 Update the concurrency limit 2025-10-05 02:41:25 +03:00
Omar Abdulla 9ffc04bf13 Update the concurrency limit 2025-10-04 23:05:56 +03:00
Omar Abdulla 2bb9594857 Implement a global concurrency limit on provider requests 2025-10-04 15:47:56 +03:00
Omar Abdulla fe7eaae984 Fix issues in the benchmarks driver 2025-10-03 01:26:19 +03:00
Omar Abdulla ff368b8444 Remove some debug logging 2025-10-02 19:36:06 +03:00
Omar Abdulla ba90c60c1b Implement the core benchmarking components 2025-10-02 18:42:38 +03:00
Omar Abdulla 8762702560 Wire up the cleaned up driver implementation 2025-09-30 13:39:25 +03:00
Omar Abdulla c3c7203af8 Implement the platform driver 2025-09-29 21:10:37 +03:00
Omar Abdulla ca7d8e2ba4 refactor existing dt infra 2025-09-29 15:29:23 +03:00
Omar Abdulla bd422b633e Fix the lighthouse node tracing issue 2025-09-28 21:39:50 +03:00
Omar Abdulla 331807e2f0 Update the account pre-funding handling 2025-09-28 19:20:42 +03:00
Omar Abdulla ec96410546 Implement a solution for the pre-fund account limit 2025-09-28 16:52:43 +03:00
+1 -1
View File
@@ -201,7 +201,7 @@ async fn compile_contracts(
// Puts a limit on how many compilations we can perform at any given instance which helps us
// with some of the errors we've been seeing with high concurrency on MacOS (we have not tried
// it on Linux so we don't know if these issues also persist there or not.)
static SPAWN_GATE: LazyLock<Semaphore> = LazyLock::new(|| Semaphore::new(5));
static SPAWN_GATE: LazyLock<Semaphore> = LazyLock::new(|| Semaphore::new(100));
let _permit = SPAWN_GATE.acquire().await?;
let all_sources_in_dir = FilesWithExtensionIterator::new(metadata_directory.as_ref())