From 06fec736896df50e063dc8a7fd1248fce7d2df35 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Wed, 28 May 2025 09:37:40 +0200 Subject: [PATCH] Update workflows with latest smoke tests --- .../3.5.x-cloud-cloud-gateway-webflux.yml | 24 +++++++++++++++++++ ...l => 3.5.x-cloud-cloud-gateway-webmvc.yml} | 14 +++++------ 2 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/3.5.x-cloud-cloud-gateway-webflux.yml rename .github/workflows/{3.5.x-cloud-cloud-gateway.yml => 3.5.x-cloud-cloud-gateway-webmvc.yml} (60%) diff --git a/.github/workflows/3.5.x-cloud-cloud-gateway-webflux.yml b/.github/workflows/3.5.x-cloud-cloud-gateway-webflux.yml new file mode 100644 index 00000000..5de4dfeb --- /dev/null +++ b/.github/workflows/3.5.x-cloud-cloud-gateway-webflux.yml @@ -0,0 +1,24 @@ +name: 3.5.x | Cloud Smoke Tests | Cloud Gateway Webflux +on: + schedule: + - cron : '50 0 * * *' + workflow_dispatch: +jobs: + cloud_gateway_webflux_app_test: + name: Cloud Gateway Webflux App Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: main + project: cloud:cloud-gateway-webflux + task: appTest + cloud_gateway_webflux_native_app_test: + name: Cloud Gateway Webflux Native App Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: main + project: cloud:cloud-gateway-webflux + task: nativeAppTest diff --git a/.github/workflows/3.5.x-cloud-cloud-gateway.yml b/.github/workflows/3.5.x-cloud-cloud-gateway-webmvc.yml similarity index 60% rename from .github/workflows/3.5.x-cloud-cloud-gateway.yml rename to .github/workflows/3.5.x-cloud-cloud-gateway-webmvc.yml index 25b86b56..ba864a23 100644 --- a/.github/workflows/3.5.x-cloud-cloud-gateway.yml +++ b/.github/workflows/3.5.x-cloud-cloud-gateway-webmvc.yml @@ -1,24 +1,24 @@ -name: 3.5.x | Cloud Smoke Tests | Cloud Gateway +name: 3.5.x | Cloud Smoke Tests | Cloud Gateway Webmvc on: schedule: - cron : '50 0 * * *' workflow_dispatch: jobs: - cloud_gateway_app_test: - name: Cloud Gateway App Test + cloud_gateway_webmvc_app_test: + name: Cloud Gateway Webmvc App Test uses: ./.github/workflows/smoke-test-jvm.yml secrets: inherit with: checkout_repository: spring-projects/spring-aot-smoke-tests checkout_ref: main - project: cloud:cloud-gateway + project: cloud:cloud-gateway-webmvc task: appTest - cloud_gateway_native_app_test: - name: Cloud Gateway Native App Test + cloud_gateway_webmvc_native_app_test: + name: Cloud Gateway Webmvc Native App Test uses: ./.github/workflows/smoke-test-native.yml secrets: inherit with: checkout_repository: spring-projects/spring-aot-smoke-tests checkout_ref: main - project: cloud:cloud-gateway + project: cloud:cloud-gateway-webmvc task: nativeAppTest