From b232610c839569a0dd89430d34d5c5f3aa29c579 Mon Sep 17 00:00:00 2001 From: "m.semalaiappan" Date: Mon, 11 Mar 2024 22:33:30 -0500 Subject: [PATCH] Deleted Workflows Removed --- .../Lib edFi.admin.dataaccess pullrequest.yml | 41 ------------------- .../workflows/Lib edFi.common pullrequest.yml | 40 ------------------ .../Lib edFi.loadtools pullrequest.yml | 41 ------------------- .../Lib edFi.ods.api pullrequest .yml | 40 ------------------ .../Lib edFi.ods.common pullrequest.yml | 40 ------------------ ...b edFi.security.dataaccess pullrequest.yml | 41 ------------------- 6 files changed, 243 deletions(-) delete mode 100644 .github/workflows/Lib edFi.admin.dataaccess pullrequest.yml delete mode 100644 .github/workflows/Lib edFi.common pullrequest.yml delete mode 100644 .github/workflows/Lib edFi.loadtools pullrequest.yml delete mode 100644 .github/workflows/Lib edFi.ods.api pullrequest .yml delete mode 100644 .github/workflows/Lib edFi.ods.common pullrequest.yml delete mode 100644 .github/workflows/Lib edFi.security.dataaccess pullrequest.yml diff --git a/.github/workflows/Lib edFi.admin.dataaccess pullrequest.yml b/.github/workflows/Lib edFi.admin.dataaccess pullrequest.yml deleted file mode 100644 index 9f97114df8..0000000000 --- a/.github/workflows/Lib edFi.admin.dataaccess pullrequest.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Lib EdFi.Admin.DataAccess Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - BUILD_INCREMENTER: "1" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Application/EdFi.Admin.DataAccess/EdFi.Admin.DataAccess.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -BuildIncrementer ${{env.BUILD_INCREMENTER}} -Solution "Application/EdFi.Admin.DataAccess/EdFi.Admin.DataAccess.sln" -ProjectFile "Application/EdFi.Admin.DataAccess/EdFi.Admin.DataAccess.csproj" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Admin.DataAccess/EdFi.Admin.DataAccess.sln" -ProjectFile "Application/EdFi.Admin.DataAccess/EdFi.Admin.DataAccess.csproj" - shell: pwsh diff --git a/.github/workflows/Lib edFi.common pullrequest.yml b/.github/workflows/Lib edFi.common pullrequest.yml deleted file mode 100644 index aa13eae02b..0000000000 --- a/.github/workflows/Lib edFi.common pullrequest.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Lib EdFi.Common Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Application/EdFi.Common/EdFi.Common.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -Solution "Application/EdFi.Common/EdFi.Common.sln" -ProjectFile "Application/EdFi.Common/EdFi.Common.csproj" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Common/EdFi.Common.sln" -ProjectFile "Application/EdFi.Common/EdFi.Common.csproj" - shell: pwsh diff --git a/.github/workflows/Lib edFi.loadtools pullrequest.yml b/.github/workflows/Lib edFi.loadtools pullrequest.yml deleted file mode 100644 index 775e9c6fad..0000000000 --- a/.github/workflows/Lib edFi.loadtools pullrequest.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Lib EdFi.LoadTools Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - BUILD_INCREMENTER: "1" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Utilities/DataLoading/LoadTools.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -BuildIncrementer ${{env.BUILD_INCREMENTER}} -Solution "Utilities/DataLoading/LoadTools.sln" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Utilities/DataLoading/LoadTools.sln" -TestFilter "RunManually" - shell: pwsh diff --git a/.github/workflows/Lib edFi.ods.api pullrequest .yml b/.github/workflows/Lib edFi.ods.api pullrequest .yml deleted file mode 100644 index 31f2bcd39c..0000000000 --- a/.github/workflows/Lib edFi.ods.api pullrequest .yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Lib EdFi.Ods.Api Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Application/EdFi.Ods.Api/EdFi.Ods.Api.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -Solution "Application/EdFi.Ods.Api/EdFi.Ods.Api.sln" -ProjectFile "Application/EdFi.Ods.Api/EdFi.Ods.Api.csproj" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Ods.Api/EdFi.Ods.Api.sln" -ProjectFile "Application/EdFi.Ods.Api/EdFi.Ods.Api.csproj" - shell: pwsh diff --git a/.github/workflows/Lib edFi.ods.common pullrequest.yml b/.github/workflows/Lib edFi.ods.common pullrequest.yml deleted file mode 100644 index d03193257a..0000000000 --- a/.github/workflows/Lib edFi.ods.common pullrequest.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Lib EdFi.Ods.Common Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Application/EdFi.Ods.Common/EdFi.Ods.Common.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -Solution "Application/EdFi.Ods.Common/EdFi.Ods.Common.sln" -ProjectFile "Application/EdFi.Ods.Common/EdFi.Ods.Common.csproj" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Ods.Common/EdFi.Ods.Common.sln" -ProjectFile "Application/EdFi.Ods.Common/EdFi.Ods.Common.csproj" - shell: pwsh diff --git a/.github/workflows/Lib edFi.security.dataaccess pullrequest.yml b/.github/workflows/Lib edFi.security.dataaccess pullrequest.yml deleted file mode 100644 index 183d6d595a..0000000000 --- a/.github/workflows/Lib edFi.security.dataaccess pullrequest.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Lib EdFi.Security.DataAccess Pull request build and test - -on: - pull_request: - branches: [main, 'ODS-*'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -env: - INFORMATIONAL_VERSION: "7.2" - BUILD_INCREMENTER: "1" - CONFIGURATION: "Release" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - name: Cache Nuget packages - uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 #v3.2.3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*', '**/configuration.packages.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - name: Restore NuGet packages - run: | - .\build.githubactions.ps1 restore -Solution "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.sln" - shell: pwsh - - name: build - run: | - .\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -BuildIncrementer ${{env.BUILD_INCREMENTER}} -Solution "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.sln" -ProjectFile "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.csproj" - shell: pwsh - - name: Run Unit tests - run: | - .\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.sln" -ProjectFile "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.csproj" - shell: pwsh