Buildkite pipeline for integration tests (#1863)

This commit is contained in:
Josh Mock
2023-05-05 13:18:20 -05:00
committed by GitHub
parent bdb44d6d9a
commit c9f31d22fd
17 changed files with 611 additions and 6 deletions

16
.buildkite/run-tests.sh Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# Script to run Elasticsearch container and Elasticsearch client integration tests on Buildkite
#
# Version 0.1
#
script_path=$(dirname "$(realpath -s "$0")")
source "$script_path/functions/imports.sh"
set -euo pipefail
echo "--- :elasticsearch: Starting Elasticsearch"
DETACH=true bash "$script_path/run-elasticsearch.sh"
echo "+++ :javascript: Run Client"
bash "$script_path/run-client.sh"