mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
* [CI] Adds Buildkite configuration * Removes GitHub Actions * Moves lint and docs tasks to Buildkite
40 lines
1.7 KiB
Bash
Executable File
40 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Called by entry point `run-test` use this script to add your repository specific test commands
|
|
#
|
|
# Once called Elasticsearch is up and running and the following parameters are available to this script
|
|
|
|
# ELASTICSEARCH_VERSION -- version e.g Major.Minor.Patch(-Prelease)
|
|
# ELASTICSEARCH_CONTAINER -- the docker moniker as a reference to know which docker image distribution is used
|
|
# ELASTICSEARCH_URL -- The url at which elasticsearch is reachable
|
|
# NETWORK_NAME -- The docker network name
|
|
# NODE_NAME -- The docker container name also used as Elasticsearch node name
|
|
|
|
# When run in CI the test-matrix is used to define additional variables
|
|
|
|
# TEST_SUITE -- `xpack`
|
|
#
|
|
|
|
PYTHON_VERSION=${PYTHON_VERSION-3.8}
|
|
echo -e "\033[34;1mINFO:\033[0m URL ${ELASTICSEARCH_URL}\033[0m"
|
|
echo -e "\033[34;1mINFO:\033[0m VERSION ${ELASTICSEARCH_VERSION}\033[0m"
|
|
echo -e "\033[34;1mINFO:\033[0m CONTAINER ${ELASTICSEARCH_CONTAINER}\033[0m"
|
|
echo -e "\033[34;1mINFO:\033[0m TEST_SUITE ${TEST_SUITE}\033[0m"
|
|
echo -e "\033[34;1mINFO:\033[0m PYTHON_VERSION ${PYTHON_VERSION}\033[0m"
|
|
echo -e "\033[34;1mINFO:\033[0m PANDAS_VERSION ${PANDAS_VERSION}\033[0m"
|
|
|
|
echo -e "\033[1m>>>>> Build [elastic/eland container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
|
|
|
|
docker build --file .buildkite/Dockerfile --tag elastic/eland --build-arg PYTHON_VERSION=${PYTHON_VERSION} .
|
|
|
|
echo -e "\033[1m>>>>> Run [elastic/eland container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
|
|
|
|
docker run \
|
|
--network=${NETWORK_NAME} \
|
|
--env "ELASTICSEARCH_HOST=${ELASTICSEARCH_URL}" \
|
|
--env "TEST_SUITE=${TEST_SUITE}" \
|
|
--name eland-test-runner \
|
|
--rm \
|
|
elastic/eland \
|
|
nox -s "test-${PYTHON_VERSION}(pandas_version='${PANDAS_VERSION}')"
|