From ee2dd9717d4f4215c7317dc6bd92707a8fda553d Mon Sep 17 00:00:00 2001 From: Naiyuan Tian <110135109+nytian@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:50:31 -0800 Subject: [PATCH] Delete Functions v2 and v3 Smoke Tests (#3012) * initial commit * update pr template --- .github/pull_request_template.md | 4 ++-- .github/workflows/smoketest-dotnet-v2.yml | 13 ------------- .github/workflows/smoketest-dotnet-v3.yml | 13 ------------- WebJobs.Extensions.DurableTask.sln | 2 -- 4 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/smoketest-dotnet-v2.yml delete mode 100644 .github/workflows/smoketest-dotnet-v3.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index eedf52e97..bdd0ec617 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -21,5 +21,5 @@ resolves #issue_for_this_pr * [ ] Otherwise: major or minor version updates are reflected in `/src/Worker.Extensions.DurableTask/AssemblyInfo.cs` * [ ] My changes **do not** add EventIds to our EventSource logs * [ ] Otherwise: Ensure the EventIds are within the supported range in our existing Windows infrastructure. You may validate this with a deployed app's telemetry. You may also extend the range by completing a PR such as [this one](https://msazure.visualstudio.com/One/_git/AAPT-Antares-Websites/pullrequest/7463263?_a=files). -* [ ] My changes **should** be added to v3.x branch. - * [ ] Otherwise: This change only applies to Durable Functions v2.x and **will not** be merged to branch v3.x. +* [ ] My changes **should** be added to **v2.x** branch. + * [ ] Otherwise: This change applies exclusively to WebJobs.Extensions.DurableTask v3.x. It will be retained only in the `dev` and `main` branches and will not be merged into the `v2.x` branch. diff --git a/.github/workflows/smoketest-dotnet-v2.yml b/.github/workflows/smoketest-dotnet-v2.yml deleted file mode 100644 index 3582f19f1..000000000 --- a/.github/workflows/smoketest-dotnet-v2.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Smoke Test - .NET on Functions V2 - -on: - {} - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run V2 .NET Smoke Test - run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/SmokeTestsV2/Dockerfile -HttpStartPath api/HttpStart - shell: pwsh diff --git a/.github/workflows/smoketest-dotnet-v3.yml b/.github/workflows/smoketest-dotnet-v3.yml deleted file mode 100644 index a02a5a409..000000000 --- a/.github/workflows/smoketest-dotnet-v3.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Smoke Test - .NET on Functions V3 - -on: - {} - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run V3 .NET Smoke Test - run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/SmokeTestsV3/Dockerfile -HttpStartPath api/HttpStart - shell: pwsh diff --git a/WebJobs.Extensions.DurableTask.sln b/WebJobs.Extensions.DurableTask.sln index 693524396..26c6d391a 100644 --- a/WebJobs.Extensions.DurableTask.sln +++ b/WebJobs.Extensions.DurableTask.sln @@ -75,8 +75,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pipelines", "pipelines", "{ ProjectSection(SolutionItems) = preProject azure-pipelines.yml = azure-pipelines.yml .github\workflows\smoketest-dotnet-isolated-v4.yml = .github\workflows\smoketest-dotnet-isolated-v4.yml - .github\workflows\smoketest-dotnet-v2.yml = .github\workflows\smoketest-dotnet-v2.yml - .github\workflows\smoketest-dotnet-v3.yml = .github\workflows\smoketest-dotnet-v3.yml .github\workflows\smoketest-node14-v4.yml = .github\workflows\smoketest-node14-v4.yml .github\workflows\smoketest-python37-v4.yml = .github\workflows\smoketest-python37-v4.yml EndProjectSection