File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ set -euo pipefail
13
13
PHP_VERSION=${PHP_VERSION-8.4-cli}
14
14
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-" $elasticsearch_url " }
15
15
elasticsearch_container=${elasticsearch_container-}
16
- ES_LOCAL_PASSWORD=${ES_LOCAL_PASSWORD-" changeme" }
16
+
17
+ echo " --- :elasticsearch: Starting Elasticsearch"
18
+ curl -fsSL https://elastic.co/start-local | sh -s -- -v ${STACK_VERSION} -esonly
19
+ source elastic-start-local/.env
17
20
18
21
echo -e " \033[34;1mINFO:\033[0m VERSION ${STACK_VERSION} \033[0m"
19
22
echo -e " \033[34;1mINFO:\033[0m TEST_SUITE ${TEST_SUITE} \033[0m"
Original file line number Diff line number Diff line change @@ -7,12 +7,5 @@ script_path=$(dirname $(realpath -s $0))
7
7
source $script_path /functions/imports.sh
8
8
set -euo pipefail
9
9
10
- echo " --- :elasticsearch: Starting Elasticsearch"
11
- curl -fsSL https://elastic.co/start-local | sh -s -- -v ${STACK_VERSION} -esonly
12
- source elastic-start-local/.env
13
-
14
- echo " --- :test: Building YAML tests"
15
- git clone https://github.com/elastic/elasticsearch-clients-tests.git $script_path /tests/elasticsearch-clients-tests
16
-
17
10
echo " +++ :php: Run Client"
18
- bash $script_path /run-repository.sh
11
+ bash " $script_path /run-repository.sh"
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ # Clone the elasticsearch-clients-tests repository
4
+ git clone https://github.com/elastic/elasticsearch-clients-tests.git tests/elasticsearch-clients-tests
5
+
3
6
# Build the YAML tests
4
7
php tests/build_es_tests.php tests/elasticsearch-clients-tests/tests ${TEST_SUITE} tests/Yaml
5
8
You can’t perform that action at this time.
0 commit comments