From 11b693ec306da0093230084eb06a5594df000071 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 27 Feb 2025 10:40:55 +0000 Subject: [PATCH] Update workflows with latest smoke tests --- .../workflows/3.0.x-boot-boot-tcf-mockito.yml | 26 +++++++++++++++++++ .github/workflows/3.0.x-boot-boot-tcf.yml | 2 -- .../workflows/3.1.x-boot-boot-tcf-mockito.yml | 26 +++++++++++++++++++ .github/workflows/3.1.x-boot-boot-tcf.yml | 2 -- .../workflows/3.2.x-boot-boot-tcf-mockito.yml | 26 +++++++++++++++++++ .github/workflows/3.2.x-boot-boot-tcf.yml | 2 -- .../workflows/3.3.x-boot-boot-tcf-mockito.yml | 26 +++++++++++++++++++ .github/workflows/3.3.x-boot-boot-tcf.yml | 2 -- .../workflows/3.4.x-framework-tcf-mockito.yml | 25 ++++++++++++++++++ 9 files changed, 129 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/3.0.x-boot-boot-tcf-mockito.yml create mode 100644 .github/workflows/3.1.x-boot-boot-tcf-mockito.yml create mode 100644 .github/workflows/3.2.x-boot-boot-tcf-mockito.yml create mode 100644 .github/workflows/3.3.x-boot-boot-tcf-mockito.yml create mode 100644 .github/workflows/3.4.x-framework-tcf-mockito.yml diff --git a/.github/workflows/3.0.x-boot-boot-tcf-mockito.yml b/.github/workflows/3.0.x-boot-boot-tcf-mockito.yml new file mode 100644 index 00000000..8ce2521a --- /dev/null +++ b/.github/workflows/3.0.x-boot-boot-tcf-mockito.yml @@ -0,0 +1,26 @@ +name: 3.0.x | Boot Smoke Tests | Boot Tcf Mockito +on: + schedule: + - cron : '10 0 * * *' + workflow_dispatch: +jobs: + boot_tcf_mockito_test: + name: Boot Tcf Mockito Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.0.x + project: boot:boot-tcf-mockito + task: test + expected_to_fail: true + boot_tcf_mockito_native_test: + name: Boot Tcf Mockito Native Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.0.x + project: boot:boot-tcf-mockito + task: nativeTest + expected_to_fail: true diff --git a/.github/workflows/3.0.x-boot-boot-tcf.yml b/.github/workflows/3.0.x-boot-boot-tcf.yml index 91d27392..187b2ecd 100644 --- a/.github/workflows/3.0.x-boot-boot-tcf.yml +++ b/.github/workflows/3.0.x-boot-boot-tcf.yml @@ -13,7 +13,6 @@ jobs: checkout_ref: 3.0.x project: boot:boot-tcf task: test - expected_to_fail: true boot_tcf_native_test: name: Boot Tcf Native Test uses: ./.github/workflows/smoke-test-native.yml @@ -23,4 +22,3 @@ jobs: checkout_ref: 3.0.x project: boot:boot-tcf task: nativeTest - expected_to_fail: true diff --git a/.github/workflows/3.1.x-boot-boot-tcf-mockito.yml b/.github/workflows/3.1.x-boot-boot-tcf-mockito.yml new file mode 100644 index 00000000..40d81fff --- /dev/null +++ b/.github/workflows/3.1.x-boot-boot-tcf-mockito.yml @@ -0,0 +1,26 @@ +name: 3.1.x | Boot Smoke Tests | Boot Tcf Mockito +on: + schedule: + - cron : '20 0 * * *' + workflow_dispatch: +jobs: + boot_tcf_mockito_test: + name: Boot Tcf Mockito Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.1.x + project: boot:boot-tcf-mockito + task: test + expected_to_fail: true + boot_tcf_mockito_native_test: + name: Boot Tcf Mockito Native Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.1.x + project: boot:boot-tcf-mockito + task: nativeTest + expected_to_fail: true diff --git a/.github/workflows/3.1.x-boot-boot-tcf.yml b/.github/workflows/3.1.x-boot-boot-tcf.yml index 2f12a4a5..30493eb2 100644 --- a/.github/workflows/3.1.x-boot-boot-tcf.yml +++ b/.github/workflows/3.1.x-boot-boot-tcf.yml @@ -13,7 +13,6 @@ jobs: checkout_ref: 3.1.x project: boot:boot-tcf task: test - expected_to_fail: true boot_tcf_native_test: name: Boot Tcf Native Test uses: ./.github/workflows/smoke-test-native.yml @@ -23,4 +22,3 @@ jobs: checkout_ref: 3.1.x project: boot:boot-tcf task: nativeTest - expected_to_fail: true diff --git a/.github/workflows/3.2.x-boot-boot-tcf-mockito.yml b/.github/workflows/3.2.x-boot-boot-tcf-mockito.yml new file mode 100644 index 00000000..bcbb0393 --- /dev/null +++ b/.github/workflows/3.2.x-boot-boot-tcf-mockito.yml @@ -0,0 +1,26 @@ +name: 3.2.x | Boot Smoke Tests | Boot Tcf Mockito +on: + schedule: + - cron : '30 0 * * *' + workflow_dispatch: +jobs: + boot_tcf_mockito_test: + name: Boot Tcf Mockito Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.2.x + project: boot:boot-tcf-mockito + task: test + expected_to_fail: true + boot_tcf_mockito_native_test: + name: Boot Tcf Mockito Native Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.2.x + project: boot:boot-tcf-mockito + task: nativeTest + expected_to_fail: true diff --git a/.github/workflows/3.2.x-boot-boot-tcf.yml b/.github/workflows/3.2.x-boot-boot-tcf.yml index cb811cac..9c4d6414 100644 --- a/.github/workflows/3.2.x-boot-boot-tcf.yml +++ b/.github/workflows/3.2.x-boot-boot-tcf.yml @@ -13,7 +13,6 @@ jobs: checkout_ref: 3.2.x project: boot:boot-tcf task: test - expected_to_fail: true boot_tcf_native_test: name: Boot Tcf Native Test uses: ./.github/workflows/smoke-test-native.yml @@ -23,4 +22,3 @@ jobs: checkout_ref: 3.2.x project: boot:boot-tcf task: nativeTest - expected_to_fail: true diff --git a/.github/workflows/3.3.x-boot-boot-tcf-mockito.yml b/.github/workflows/3.3.x-boot-boot-tcf-mockito.yml new file mode 100644 index 00000000..67b2aacd --- /dev/null +++ b/.github/workflows/3.3.x-boot-boot-tcf-mockito.yml @@ -0,0 +1,26 @@ +name: 3.3.x | Boot Smoke Tests | Boot Tcf Mockito +on: + schedule: + - cron : '40 0 * * *' + workflow_dispatch: +jobs: + boot_tcf_mockito_test: + name: Boot Tcf Mockito Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.3.x + project: boot:boot-tcf-mockito + task: test + expected_to_fail: true + boot_tcf_mockito_native_test: + name: Boot Tcf Mockito Native Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: 3.3.x + project: boot:boot-tcf-mockito + task: nativeTest + expected_to_fail: true diff --git a/.github/workflows/3.3.x-boot-boot-tcf.yml b/.github/workflows/3.3.x-boot-boot-tcf.yml index 19dc7407..3fef9335 100644 --- a/.github/workflows/3.3.x-boot-boot-tcf.yml +++ b/.github/workflows/3.3.x-boot-boot-tcf.yml @@ -13,7 +13,6 @@ jobs: checkout_ref: 3.3.x project: boot:boot-tcf task: test - expected_to_fail: true boot_tcf_native_test: name: Boot Tcf Native Test uses: ./.github/workflows/smoke-test-native.yml @@ -23,4 +22,3 @@ jobs: checkout_ref: 3.3.x project: boot:boot-tcf task: nativeTest - expected_to_fail: true diff --git a/.github/workflows/3.4.x-framework-tcf-mockito.yml b/.github/workflows/3.4.x-framework-tcf-mockito.yml new file mode 100644 index 00000000..738f9780 --- /dev/null +++ b/.github/workflows/3.4.x-framework-tcf-mockito.yml @@ -0,0 +1,25 @@ +name: 3.4.x | Framework Smoke Tests | Tcf Mockito +on: + schedule: + - cron : '50 0 * * *' + workflow_dispatch: +jobs: + tcf_mockito_test: + name: Tcf Mockito Test + uses: ./.github/workflows/smoke-test-jvm.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: main + project: framework:tcf-mockito + task: test + tcf_mockito_native_test: + name: Tcf Mockito Native Test + uses: ./.github/workflows/smoke-test-native.yml + secrets: inherit + with: + checkout_repository: spring-projects/spring-aot-smoke-tests + checkout_ref: main + project: framework:tcf-mockito + task: nativeTest + expected_to_fail: true