This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Metricbeat goal (#717 * Update .ci/scripts/metricbeat-test.sh
- Loading branch information
Showing
5 changed files
with
32 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/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 metricbeat using the functional-test wrapper | ||
# | ||
# Parameters: | ||
# - STACK_VERSION - that's the version of the stack to be tested. Default '8.0.0-SNAPSHOT'. | ||
# - METRICBEAT_VERSION - that's the version of the metricbeat to be tested. Default '8.0.0-SNAPSHOT'. | ||
# | ||
|
||
STACK_VERSION=${1:-'7.11.0-SNAPSHOT'} | ||
METRICBEAT_VERSION=${2:-'7.11.0-SNAPSHOT'} | ||
SUITE='metricbeat' | ||
|
||
.ci/scripts/functional-test.sh "${SUITE}" "" "${STACK_VERSION}" "${METRICBEAT_VERSION}" |