From 6c7eecedaa4031f2db9d68273848b8cbd22a8ae3 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 18 Feb 2021 16:17:00 +0000 Subject: [PATCH] Fleet goal --- .ci/scripts/fleet-test.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 .ci/scripts/fleet-test.sh diff --git a/.ci/scripts/fleet-test.sh b/.ci/scripts/fleet-test.sh new file mode 100755 index 0000000000..c5462286f0 --- /dev/null +++ b/.ci/scripts/fleet-test.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +## Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one +## or more contributor license agreements. Licensed under the Elastic License; +## you may not use this file except in compliance with the Elastic License. + +set -euxo pipefail +# +# Run the functional tests for fleets using the functional-test wrapper +# +# Parameters: +# - STACK_VERSION - that's the version of the stack to be tested. Default '8.0.0-SNAPSHOT'. +# + +STACK_VERSION=${1:-'8.0.0-SNAPSHOT'} +SUITE='fleet' + +.ci/scripts/functional-test.sh "${SUITE}" "" "${STACK_VERSION}"