Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .test_patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,12 @@ tests:
error_regex: "could not listen on any available address"
owners:
- *sean
- regex: "simple e2e_p2p/slashing"
skip: true
owners:
- *lasse
- regex: "simple e2e_p2p/reqresp"
- regex: "simple e2e_p2p"
error_regex: "TimeoutError"
owners:
- *sean
- regex: "simple e2e_p2p/upgrade_governance_proposer"
- regex: "simple e2e_p2p/slashing"
skip: true
owners:
- *lasse
- regex: "simple e2e_p2p/validators_sentinel"
Expand Down Expand Up @@ -128,6 +125,10 @@ tests:
error_regex: "Could not retrieve body for block"
owners:
- *palla
- regex: "composed/integration_l1_publisher"
error_regex: "BlockOutOfRangeError"
owners:
- *palla
- regex: "prover-client/src/test/bb_prover_parity.test.ts"
owners:
- *palla
Expand Down
2 changes: 1 addition & 1 deletion ci3/bootstrap_ec2
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ ssh ${ssh_args:-} -F $ci3/aws/build_instance_ssh_config ubuntu@$ip "
-v /tmp:/tmp \
-v /dev/kmsg:/dev/kmsg \
-e USE_TEST_CACHE=1 \
-e CI_REDIS='ci-redis.lzka0i.0001.use2.cache.amazonaws.com' \
-e CI_REDIS='ci-redis-tiered.lzka0i.ng.0001.use2.cache.amazonaws.com' \
-e SSH_CONNECTION=' ' \
-e LOCAL_USER_ID=\$(id -u) \
-e LOCAL_GROUP_ID=\$(id -g) \
Expand Down
4 changes: 2 additions & 2 deletions ci3/run_test_cmd
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ if [ "$CI_REDIS_AVAILABLE" -eq 1 ]; then
log_info=""
fi
else
# Extend lifetime of failed test logs.
publish_log $((CI_REDIS_EXPIRE * 6))
# Extend lifetime of failed test logs to 12 weeks.
publish_log $((60 * 60 * 24 * 7 * 12))
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion ci3/source_redis
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ -z "${CI_REDIS_AVAILABLE:-}" ]; then
# We have the build_instance_key.
# Attempt to open a port to the remote redis cache via ssh through the bastion.
echo_stderr "Opening port to remote redis..."
ssh -N -L 6379:ci-redis.lzka0i.0001.use2.cache.amazonaws.com:6379 \
ssh -N -L 6379:ci-redis-tiered.lzka0i.ng.0001.use2.cache.amazonaws.com:6379 \
-o ControlMaster=auto -o ControlPath=/tmp/ssh_mux_%h_%p_%r -o ControlPersist=480m \
-F $ci3/aws/build_instance_ssh_config ci-bastion.aztecprotocol.com true && true
if nc -z $CI_REDIS 6379 &>/dev/null; then
Expand Down