6 lines
156 B
Bash
Executable file
6 lines
156 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$SHOULD_TEST" ]; then ci_retry make pull-images; fi
|
|
|
|
if [ -n "$SHOULD_TEST" ]; then ci_retry make test-integration; fi
|