Skip to content

Commit 4cd8aad

Browse files
committed
DO NOT MERGE Test aws terraform on CI
1 parent cc58daf commit 4cd8aad

File tree

2 files changed

+25
-24
lines changed

2 files changed

+25
-24
lines changed

.buildkite/pipeline.trigger.integration.tests.sh

+24-24
Original file line numberDiff line numberDiff line change
@@ -18,37 +18,37 @@ STACK_COMMAND_TESTS=(
1818
test-stack-command-8x
1919
)
2020

21-
for test in ${STACK_COMMAND_TESTS[@]}; do
22-
echo " - label: \":go: Running integration test: ${test}\""
23-
echo " command: ./.buildkite/scripts/integration_tests.sh -t ${test}"
24-
echo " agents:"
25-
echo " provider: \"gcp\""
26-
echo " artifact_paths:"
27-
echo " - build/elastic-stack-dump/stack/*/logs/*.log"
28-
echo " - build/elastic-stack-dump/stack/*/logs/fleet-server-internal/**/*"
29-
echo " - build/elastic-stack-status/*/*"
30-
done
21+
# for test in ${STACK_COMMAND_TESTS[@]}; do
22+
# echo " - label: \":go: Running integration test: ${test}\""
23+
# echo " command: ./.buildkite/scripts/integration_tests.sh -t ${test}"
24+
# echo " agents:"
25+
# echo " provider: \"gcp\""
26+
# echo " artifact_paths:"
27+
# echo " - build/elastic-stack-dump/stack/*/logs/*.log"
28+
# echo " - build/elastic-stack-dump/stack/*/logs/fleet-server-internal/**/*"
29+
# echo " - build/elastic-stack-status/*/*"
30+
# done
3131

3232
CHECK_PACKAGES_TESTS=(
3333
test-check-packages-other
3434
test-check-packages-with-kind
3535
test-check-packages-with-custom-agent
3636
test-check-packages-benchmarks
3737
)
38-
for test in ${CHECK_PACKAGES_TESTS[@]}; do
39-
echo " - label: \":go: Running integration test: ${test}\""
40-
echo " command: ./.buildkite/scripts/integration_tests.sh -t ${test}"
41-
echo " agents:"
42-
echo " provider: \"gcp\""
43-
echo " artifact_paths:"
44-
echo " - build/test-results/*.xml"
45-
echo " - build/elastic-stack-dump/stack/check-*/logs/*.log"
46-
echo " - build/elastic-stack-dump/stack/check-*/logs/fleet-server-internal/**/*"
47-
echo " - build/elastic-stack-status/*/*"
48-
if [[ $test =~ with-kind$ ]]; then
49-
echo " - build/kubectl-dump.txt"
50-
fi
51-
done
38+
# for test in ${CHECK_PACKAGES_TESTS[@]}; do
39+
# echo " - label: \":go: Running integration test: ${test}\""
40+
# echo " command: ./.buildkite/scripts/integration_tests.sh -t ${test}"
41+
# echo " agents:"
42+
# echo " provider: \"gcp\""
43+
# echo " artifact_paths:"
44+
# echo " - build/test-results/*.xml"
45+
# echo " - build/elastic-stack-dump/stack/check-*/logs/*.log"
46+
# echo " - build/elastic-stack-dump/stack/check-*/logs/fleet-server-internal/**/*"
47+
# echo " - build/elastic-stack-status/*/*"
48+
# if [[ $test =~ with-kind$ ]]; then
49+
# echo " - build/kubectl-dump.txt"
50+
# fi
51+
# done
5252

5353
pushd test/packages/parallel > /dev/null
5454
for package in $(find . -maxdepth 1 -mindepth 1 -type d) ; do

internal/testrunner/runners/system/servicedeployer/_static/terraform_deployer_run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ trap cleanup EXIT INT TERM
2121
terraform init
2222
terraform plan
2323
terraform apply -auto-approve && touch /tmp/tf-applied
24+
terraform output -json
2425

2526
echo "Terraform definitions applied."
2627

0 commit comments

Comments
 (0)