Browse Source

Remove Azure Pipelines

Lucas Trzesniewski 4 years ago
parent
commit
7bbdab447c

+ 0 - 61
azure-pipelines.yml

@@ -1,61 +0,0 @@
-
-variables:
-  BuildConfiguration: Release
-  LinuxTargetFramework: netcoreapp3.1
-
-jobs:
-  - job: Windows
-    pool:
-      vmImage: windows-latest
-    steps:
-      - task: DotNetCoreCLI@2
-        displayName: Build
-        inputs:
-          command: build
-          projects: src/Abc.Zebus.sln
-          arguments: --configuration $(BuildConfiguration)
-
-      - task: DotNetCoreCLI@2
-        displayName: Test
-        inputs:
-          command: test
-          projects: src/**/*.Tests.csproj
-          arguments: --configuration $(BuildConfiguration)
-          publishTestResults: true
-          testRunTitle: Windows
-
-      - task: DotNetCoreCLI@2
-        displayName: Pack
-        inputs:
-          command: pack
-          configuration: $(BuildConfiguration)
-          packDirectory: $(Build.ArtifactStagingDirectory)
-          verbosityPack: Minimal
-
-      - task: PublishBuildArtifacts@1
-        displayName: Publish Artifacts
-        inputs:
-          ArtifactName: NuGet
-
-  - job: Linux
-    pool:
-      vmImage: ubuntu-latest
-    steps:
-      - script: sudo apt-get install libsnappy-dev
-        displayName: Install RocksDb dependencies
-
-      - task: DotNetCoreCLI@2
-        displayName: Build
-        inputs:
-          command: build
-          projects: src/**/*.Tests.csproj
-          arguments: --configuration $(BuildConfiguration) --framework $(LinuxTargetFramework)
-
-      - task: DotNetCoreCLI@2
-        displayName: Test
-        inputs:
-          command: test
-          projects: src/**/*.Tests.csproj
-          arguments: --configuration $(BuildConfiguration) --framework $(LinuxTargetFramework)
-          publishTestResults: true
-          testRunTitle: Linux

+ 0 - 1
src/Abc.Zebus.Directory.Cassandra.Tests/Storage/CqlPeerRepositoryTests.cs

@@ -23,7 +23,6 @@ namespace Abc.Zebus.Directory.Cassandra.Tests.Storage
 
         public override void CreateSchema()
         {
-            IgnoreWhenSet("TF_BUILD");
             IgnoreWhenSet("GITHUB_ACTIONS");
             base.CreateSchema();
         }

+ 0 - 1
src/Abc.Zebus.Persistence.CQL.Tests/CqlMessageReaderTests.cs

@@ -18,7 +18,6 @@ namespace Abc.Zebus.Persistence.CQL.Tests
     {
         public override void CreateSchema()
         {
-            IgnoreWhenSet("TF_BUILD");
             IgnoreWhenSet("GITHUB_ACTIONS");
             base.CreateSchema();
         }

+ 0 - 1
src/Abc.Zebus.Persistence.CQL.Tests/CqlStorageTests.cs

@@ -29,7 +29,6 @@ namespace Abc.Zebus.Persistence.CQL.Tests
 
         public override void CreateSchema()
         {
-            IgnoreWhenSet("TF_BUILD");
             IgnoreWhenSet("GITHUB_ACTIONS");
             base.CreateSchema();
         }

+ 0 - 1
src/Abc.Zebus.Persistence.CQL.Tests/OldestNonAckedMessageUpdaterPeriodicActionTests.cs

@@ -22,7 +22,6 @@ namespace Abc.Zebus.Persistence.CQL.Tests
 
         public override void CreateSchema()
         {
-            IgnoreWhenSet("TF_BUILD");
             IgnoreWhenSet("GITHUB_ACTIONS");
             base.CreateSchema();
         }

+ 0 - 1
src/Abc.Zebus.sln

@@ -17,7 +17,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@ Solution Items", "@ Solut
 		Directory.Build.targets = Directory.Build.targets
 		..\RELEASE_NOTES.md = ..\RELEASE_NOTES.md
 		..\RELEASE_NOTES_DIRECTORY.md = ..\RELEASE_NOTES_DIRECTORY.md
-		..\azure-pipelines.yml = ..\azure-pipelines.yml
 		..\ReleaseSteps.md = ..\ReleaseSteps.md
 		nuget.config = nuget.config
 		..\.github\workflows\build.yml = ..\.github\workflows\build.yml

+ 0 - 1
src/Directory.Build.props

@@ -12,7 +12,6 @@
     <Nullable>enable</Nullable>
     <PublishRepositoryUrl>true</PublishRepositoryUrl>
     <EmbedUntrackedSources>true</EmbedUntrackedSources>
-    <ContinuousIntegrationBuild Condition="'$(TF_BUILD)' != ''">true</ContinuousIntegrationBuild>
     <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' != ''">true</ContinuousIntegrationBuild>
   </PropertyGroup>