Skip to content

Commit

Permalink
Increase CI timeout limit
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Feb 11, 2024
1 parent 8892f53 commit a87cb65
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 >>
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a87cb65

Please sign in to comment.