open-consul/test/integration/connect/envoy/test-envoy-versions.sh

44 lines
547 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
unset CDPATH
cd "$(dirname "$0")"
## no rbac url_path support
# 1.12.0
# 1.12.1
# 1.12.2
# 1.13.0
## does not exist in docker
# 1.13.5
# 1.14.0
versions=(
1.12.3
1.12.4
1.12.5
1.12.6
1.12.7
1.13.1
1.13.2
1.13.3
1.13.4
1.13.6
1.14.1
1.14.2
1.14.3
1.14.4
1.14.5
1.15.0
1.15.1
1.15.2
)
for v in "${versions[@]}"; do
echo "ENVOY_VERSION=${v}"
export ENVOY_VERSION="${v}"
go test -tags integration "$@"
done