Skip to content

Commit 466b62a

Browse files
authored
Use weblog infra for haproxy and envoy integrations (#7179)
1 parent c993a8e commit 466b62a

38 files changed

Lines changed: 556 additions & 557 deletions

.github/workflows/run-end-to-end.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ jobs:
112112
SYSTEM_TESTS_SKIP_EMPTY_SCENARIO: ${{ inputs.skip_empty_scenarios }}
113113
SYSTEM_TESTS_FORCE_EXECUTE: ${{ inputs.force_execute }}
114114
SYSTEM_TESTS_DEV_MODE: ${{ inputs._system_tests_dev_mode }}
115+
SYSTEM_TESTS_WEBLOG: ${{ inputs.weblog }}
115116
steps:
116117
- name: Compute ref
117118
id: compute_ref
@@ -516,12 +517,6 @@ jobs:
516517
- name: Run APPSEC_LAMBDA_INFERRED_SPANS scenario
517518
if: steps.build.outcome == 'success' && !cancelled() && contains(inputs.scenarios, '"APPSEC_LAMBDA_INFERRED_SPANS"')
518519
run: ./run.sh APPSEC_LAMBDA_INFERRED_SPANS
519-
- name: Run GO_PROXIES_DEFAULT scenario
520-
if: steps.build.outcome == 'success' && !cancelled() && contains(inputs.scenarios, '"GO_PROXIES_DEFAULT"')
521-
run: ./run.sh GO_PROXIES_DEFAULT --weblog ${{ inputs.weblog }}
522-
- name: Run GO_PROXIES_APPSEC_BLOCKING scenario
523-
if: steps.build.outcome == 'success' && !cancelled() && contains(inputs.scenarios, '"GO_PROXIES_APPSEC_BLOCKING"')
524-
run: ./run.sh GO_PROXIES_APPSEC_BLOCKING --weblog ${{ inputs.weblog }}
525520
- name: Run OTEL_COLLECTOR scenario
526521
if: steps.build.outcome == 'success' && !cancelled() && contains(inputs.scenarios, '"OTEL_COLLECTOR"')
527522
run: ./run.sh OTEL_COLLECTOR

conftest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,9 @@ def pytest_configure(config: pytest.Config) -> None:
195195
if not config.option.force_execute and "SYSTEM_TESTS_FORCE_EXECUTE" in os.environ:
196196
config.option.force_execute = os.environ["SYSTEM_TESTS_FORCE_EXECUTE"].strip().split(",")
197197

198+
if not config.option.weblog and os.environ.get("SYSTEM_TESTS_WEBLOG"):
199+
config.option.weblog = os.environ.get("SYSTEM_TESTS_WEBLOG")
200+
198201
if not config.option.library and "TEST_LIBRARY" in os.environ:
199202
config.option.library = os.environ["TEST_LIBRARY"].strip()
200203

manifests/envoy.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)