You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/test/integration/connect/envoy/test-envoy-versions.sh

21 lines
258 B

#!/bin/bash
set -euo pipefail
unset CDPATH
cd "$(dirname "$0")"
versions=(
1.15.0
1.14.4
1.13.4
1.12.6
)
for v in "${versions[@]}"; do
echo "ENVOY_VERSION=${v}"
export ENVOY_VERSION="${v}"
go test -tags integration "$@"
done