Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Integration Test Changes #18758

Merged
merged 17 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
34 changes: 17 additions & 17 deletions .github/workflows/test-integrations-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
strategy:
fail-fast: false
matrix:
envoy-version: [ "1.24.10", "1.25.9", "1.26.4", "1.27.0" ]
envoy-version: [ "1.27.0" ]
Ganeshrockz marked this conversation as resolved.
Show resolved Hide resolved
xds-target: [ "server", "client" ]
env:
ENVOY_VERSION: ${{ matrix.envoy-version }}
Expand Down Expand Up @@ -103,22 +103,22 @@ jobs:
# https://hashicorp.atlassian.net/browse/NET-4973
# ^ Ticket to figure out why grouping test case is failing on Windows Machine

- name: Envoy Integration Tests for windows case-api-gateway-http-hostnames
shell: bash
if: always()
env:
GOTESTSUM_JUNITFILE: ${{ env.TEST_RESULTS_DIR }}/results.xml
GOTESTSUM_FORMAT: standard-verbose
COMPOSE_INTERACTIVE_NO_CLI: 1
LAMBDA_TESTS_ENABLED: "true"
# tput complains if this isn't set to something.
TERM: ansi
run: |
# shellcheck disable=SC2001
echo "Running Integration Test case-api-gateway-http-hostnames"
# shellcheck disable=SC2001
go test -v -timeout=45m -tags integration \
./test/integration/connect/envoy -run="TestEnvoy/case-api-gateway-http-hostnames" -win=true
# - name: Envoy Integration Tests for windows case-api-gateway-http-hostnames
# shell: bash
# if: always()
# env:
# GOTESTSUM_JUNITFILE: ${{ env.TEST_RESULTS_DIR }}/results.xml
# GOTESTSUM_FORMAT: standard-verbose
# COMPOSE_INTERACTIVE_NO_CLI: 1
# LAMBDA_TESTS_ENABLED: "true"
# # tput complains if this isn't set to something.
# TERM: ansi
# run: |
# # shellcheck disable=SC2001
# echo "Running Integration Test case-api-gateway-http-hostnames"
# # shellcheck disable=SC2001
# go test -v -timeout=45m -tags integration \
# ./test/integration/connect/envoy -run="TestEnvoy/case-api-gateway-http-hostnames" -win=true

- name: Envoy Integration Tests for windows case-api-gateway-http-simple
shell: bash
Expand Down
2 changes: 0 additions & 2 deletions test/integration/connect/envoy/run-tests.windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -605,12 +605,10 @@ function suite_teardown {

function run_containers {
echo "Starting containers"
echo $(date)
echo $@
for name in $@ ; do
echo "Starting container"
echo $name
echo $(date)
run_container $name
done
echo "Done running containers"
Expand Down