diff --git a/.test_patterns.yml b/.test_patterns.yml index 119bfa9f34ee..f985e6660a8d 100644 --- a/.test_patterns.yml +++ b/.test_patterns.yml @@ -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" @@ -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 diff --git a/ci3/bootstrap_ec2 b/ci3/bootstrap_ec2 index a10ee67c77bc..d2a09b190216 100755 --- a/ci3/bootstrap_ec2 +++ b/ci3/bootstrap_ec2 @@ -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) \ diff --git a/ci3/run_test_cmd b/ci3/run_test_cmd index e649f75ad04a..50ad0cee6eb4 100755 --- a/ci3/run_test_cmd +++ b/ci3/run_test_cmd @@ -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 diff --git a/ci3/source_redis b/ci3/source_redis index 630aaf881f56..1e9fc4f430fb 100644 --- a/ci3/source_redis +++ b/ci3/source_redis @@ -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