From a87cb6556811ebc9df75c15f65fec819523ef0a9 Mon Sep 17 00:00:00 2001 From: Howard Wu <9260812+howardwu@users.noreply.github.com> Date: Sun, 11 Feb 2024 10:04:48 -0800 Subject: [PATCH] Increase CI timeout limit --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 18c9b8d2f7..e98a78be0e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -97,7 +97,7 @@ commands: - setup_environment: cache_key: << parameters.cache_key >> - run: - no_output_timeout: 30m + no_output_timeout: 60m command: cd << parameters.workspace_member >> && RUST_MIN_STACK=67108864 cargo test << parameters.flags >> - clear_environment: cache_key: << parameters.cache_key >> @@ -117,7 +117,7 @@ commands: - setup_environment: cache_key: << parameters.cache_key >> - run: - no_output_timeout: 45m + no_output_timeout: 60m command: | cd << parameters.workspace_member >> cargo test -- --list --format terse | sed 's/: test//' > test_names.txt @@ -678,43 +678,43 @@ jobs: workspace_member: synthesizer/program cache_key: snarkvm-synthesizer-program-cache - synthesizer-program-integration-keccak: + synthesizer-program-integration: docker: - image: cimg/rust:1.72.1 resource_class: 2xlarge steps: - run_serial: - flags: keccak --test '*' + flags: --test '*' -- --skip keccak --skip psd --skip sha workspace_member: synthesizer/program cache_key: snarkvm-synthesizer-program-cache - synthesizer-program-integration-psd: + synthesizer-program-integration-keccak: docker: - image: cimg/rust:1.72.1 resource_class: 2xlarge steps: - run_serial: - flags: psd --test '*' + flags: keccak --test '*' workspace_member: synthesizer/program cache_key: snarkvm-synthesizer-program-cache - synthesizer-program-integration-sha: + synthesizer-program-integration-psd: docker: - image: cimg/rust:1.72.1 resource_class: 2xlarge steps: - run_serial: - flags: sha --test '*' + flags: psd --test '*' workspace_member: synthesizer/program cache_key: snarkvm-synthesizer-program-cache - synthesizer-program-integration-rest: + synthesizer-program-integration-sha: docker: - image: cimg/rust:1.72.1 resource_class: 2xlarge steps: - run_serial: - flags: --test '*' -- --skip keccak --skip psd --skip sha + flags: sha --test '*' workspace_member: synthesizer/program cache_key: snarkvm-synthesizer-program-cache @@ -889,10 +889,10 @@ workflows: - synthesizer-process - synthesizer-process-with-rocksdb - synthesizer-program + - synthesizer-program-integration - synthesizer-program-integration-keccak - synthesizer-program-integration-psd - synthesizer-program-integration-sha - - synthesizer-program-integration-rest - synthesizer-snark - utilities - utilities-derives