Skip to content

Commit

Permalink
.ci/aws: Always make kill_all_clusters succeed
Browse files Browse the repository at this point in the history
Signed-off-by: Seth Zegelstein <[email protected]>
  • Loading branch information
a-szegel committed May 16, 2024
1 parent 31d2c08 commit 0868c35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .ci/aws/common.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def kill_all_clusters(instance_type, region) {
script: "echo ${instance_type} | tr -d '.\\n'",
returnStdout: true
)
sh ". venv/bin/activate; ./PortaFiducia/scripts/delete_manual_cluster.py --cluster-name \'*${instance_type_without_period}*\' --region ${region}"
sh "ps -p \$\$"
sh ". venv/bin/activate; ./PortaFiducia/scripts/delete_manual_cluster.py --cluster-name \'*${instance_type_without_period}*\' --region ${region} || true"
}


Expand Down

0 comments on commit 0868c35

Please sign in to comment.