Skip to content
Snippets Groups Projects
Commit a6529852 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Temp remove aws check for failed

parent 0432c2a7
Branches
Tags
2 merge requests!76Develop,!75Env.ci
Pipeline #9622 passed with warnings with stages
in 39 minutes and 17 seconds
......@@ -1084,7 +1084,7 @@ aws:
id=$(echo ${id}| grep -oP "jobId\K.*" | tr -d '"' | tr -d ":" | tr -d " " | tr -d "}")
- >
status=$(aws batch describe-jobs --jobs ${id} | grep -oP "status\": \K.*" | tr -d '"' | tr -d ',') &&
until [[ "${status}" == "SUCCEEDED" ]] || [[ "${status}" == "FAILED" ]]; do
until [[ "${status}" == "SUCCEEDED" ]]; do
status=$(aws batch describe-jobs --jobs ${id} | grep -oP "status\": \K.*" | tr -d '"' | tr -d ',') &&
echo ${status} &&
sleep 5m
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment