From 741b4f495acf6ac5c2c642ad322c9c9c835c16cd Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 16 May 2024 12:15:45 +0100 Subject: [PATCH] Add workflow for Cloud's Config Server smoke test See gh-221 --- .../3.3.x-cloud-cloud-config-server.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/3.3.x-cloud-cloud-config-server.yml diff --git a/.github/workflows/3.3.x-cloud-cloud-config-server.yml b/.github/workflows/3.3.x-cloud-cloud-config-server.yml new file mode 100644 index 00000000..4d79696e --- /dev/null +++ b/.github/workflows/3.3.x-cloud-cloud-config-server.yml @@ -0,0 +1,25 @@ +name: 3.3.x | Cloud Smoke Tests | Cloud Config Server +on: + schedule: + - cron : '40 0 * * *' + workflow_dispatch: +jobs: + cloud_config_server_app_test: + name: Cloud Config Server 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-config-server + task: appTest + cloud_config_server_native_app_test: + name: Cloud Config Server 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-config-server + task: nativeAppTest + java_version: 21