Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add double quotes in variables
  • Loading branch information
mrodm committed Jul 21, 2025
commit 75649547bd9e2a16515edb54ec0438724e8b50c8
6 changes: 3 additions & 3 deletions .buildkite/scripts/run-installer-compliance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ function start_stack() {
local elastic_package="go run github.com/elastic/elastic-package"

cd compliance
$elastic_package stack up -d --version $stack_version
$elastic_package stack up -d --version "$stack_version"
eval $($elastic_package stack shellinit)
cd -
}

echo "--- Start local Elastic Stack $STACK_VERSION with elastic-package"
start_stack $STACK_VERSION
start_stack "$STACK_VERSION"

echo "--- Check compliance with Package Spec $SPEC_VERSION"
TEST_SPEC_VERSION=$SPEC_VERSION TEST_SPEC_JUNIT=report-$STACK_VERSION-$SPEC_VERSION.xml make -C compliance test
TEST_SPEC_VERSION="$SPEC_VERSION" TEST_SPEC_JUNIT="report-$STACK_VERSION-$SPEC_VERSION.xml" make -C compliance test