File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,8 @@ orbs:
240
240
command : |
241
241
DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')"
242
242
DOCKERIZE_URL: $DOCKERIZE_URL
243
- curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL
243
+ set -e
244
+ curl --silent --show-error --location --fail --retry 5 --output /usr/local/bin/dockerize $DOCKERIZE_URL
244
245
chmod +x /usr/local/bin/dockerize
245
246
dockerize --version
246
247
# Wait for containers to start
@@ -275,11 +276,13 @@ orbs:
275
276
name : Upload JUnit reports to Datadog
276
277
when : always
277
278
command : |
279
+ set -e
280
+
278
281
sed -i 's/file="\.\//file="/g' tmp/rspec/*.xml
279
282
280
283
ls -l tmp/rspec/*.xml
281
284
282
- curl -L --fail --retry 3 "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_linux-x64" --output "/usr/local/bin/datadog-ci" && chmod +x /usr/local/bin/datadog-ci
285
+ curl -L --fail --retry 5 "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_linux-x64" --output "/usr/local/bin/datadog-ci" && chmod +x /usr/local/bin/datadog-ci
283
286
284
287
datadog-ci version
285
288
You can’t perform that action at this time.
0 commit comments