* Add jobs for testing missing 8.x branches
* Drop references to acceptance tests
They were removed in 1a227459f0
* Add myself as a contributor
😎
* Clean up shellcheck warnings
Co-authored-by: Josh Mock <josh@joshmock.com>
24 lines
796 B
Bash
Executable File
24 lines
796 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Version 1.1
|
|
# - Moved to .ci folder and separated out `run-repository.sh`
|
|
# - Add `$RUNSCRIPTS` env var for running Elasticsearch dependent products
|
|
script_path=$(dirname "$(realpath -s "$0")")
|
|
source "$script_path/functions/imports.sh"
|
|
set -euo pipefail
|
|
|
|
echo -e "\033[1m>>>>> Start [$STACK_VERSION container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
|
|
DETACH=true bash .ci/run-elasticsearch.sh
|
|
|
|
if [[ -n "$RUNSCRIPTS" ]]; then
|
|
for RUNSCRIPT in ${RUNSCRIPTS//,/ } ; do
|
|
echo -e "\033[1m>>>>> Running run-$RUNSCRIPT.sh >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
|
|
CONTAINER_NAME=${RUNSCRIPT} \
|
|
DETACH=true \
|
|
bash ".ci/run-${RUNSCRIPT}.sh"
|
|
done
|
|
fi
|
|
|
|
echo -e "\033[1m>>>>> Repository specific tests >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
|
|
bash .ci/run-repository.sh
|