Skip to content

Commit 1003573

Browse files
committed
[CI] Default to Rust stable, make curl silent
1 parent d1af56d commit 1003573

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/run-elasticsearch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ END
9999
--ulimit nofile=65536:65536 \
100100
--ulimit memlock=-1:-1 \
101101
--detach="$local_detach" \
102-
--health-cmd="curl $cert_validation_flags --fail $elasticsearch_url/_cluster/health || exit 1" \
102+
--health-cmd="curl $cert_validation_flags --silent --fail $elasticsearch_url/_cluster/health || exit 1" \
103103
--health-interval=2s \
104104
--health-retries=20 \
105105
--health-timeout=2s \

.ci/run-repository.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ script_path=$(dirname $(realpath -s $0))
1010
source $script_path/functions/imports.sh
1111
set -euo pipefail
1212

13-
RUST_TOOLCHAIN=${RUST_TOOLCHAIN-nightly-2020-07-27}
13+
RUST_TOOLCHAIN=${RUST_TOOLCHAIN-latest}
1414
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"}
1515
elasticsearch_container=${elasticsearch_container-}
1616

@@ -40,4 +40,4 @@ docker run \
4040
--volume ${repo}/test_results:/usr/src/elasticsearch-rs/test_results \
4141
--rm \
4242
elastic/elasticsearch-rs \
43-
/bin/bash -c "cargo make test-yaml"
43+
/bin/bash -c "cargo make test-yaml"

0 commit comments

Comments
 (0)