From 63fb0e776c9476511dc2cc248bdc9def47c4d250 Mon Sep 17 00:00:00 2001 From: Rob Prouse Date: Thu, 20 Jun 2024 16:02:44 -0400 Subject: [PATCH] Remove Azure DevOps pipelines CI/CD --- azure-pipelines.yml | 69 --------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 346a6f51..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,69 +0,0 @@ -trigger: - branches: - include: [ '*' ] - exclude: [ 'refs/tags/*' ] - -jobs: - - job: Windows - pool: - vmImage: 'windows-latest' - steps: - - task: UseDotNet@2 - displayName: Install .NET Core 5.0 runtime - inputs: - packageType: runtime - version: 5.x - - task: UseDotNet@2 - displayName: Install .NET Core 6.0 sdk - inputs: - version: 6.x - - task: UseDotNet@2 - displayName: Install .NET Core 7.0 sdk - inputs: - version: 7.x - - task: UseDotNet@2 - displayName: Install .NET Core 8.0 sdk - inputs: - version: 8.x - - task: UseDotNet@2 - displayName: Install .NET Core 3.1 runtime - inputs: - packageType: runtime - version: 3.1.x - - powershell: .\build.ps1 --target=CI --configuration=$(BuildConfiguration) - displayName: Build, package, and test - - - - job: Linux - pool: - vmImage: 'ubuntu-latest' - steps: - - task: UseDotNet@2 - displayName: Install .NET Core 6.0 sdk - inputs: - version: 6.x - - - task: UseDotNet@2 - displayName: Install .NET Core 7.0 sdk - inputs: - version: 7.x - - - task: UseDotNet@2 - displayName: Install .NET Core 8.0 sdk - inputs: - version: 8.x - - - task: UseDotNet@2 - displayName: Install .NET Core 5.0 runtime - inputs: - packageType: runtime - version: 5.x - - - task: UseDotNet@2 - displayName: Install .NET Core 3.1 runtime - inputs: - packageType: runtime - version: 3.1.x - - - powershell: .\build.ps1 --target=test --configuration=$(BuildConfiguration) - displayName: Build and test