Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2019-08-30 06:10:47 +0300
committerJb Evain <jb@evain.net>2019-08-30 06:10:47 +0300
commit06da31930ff100cef48aef677c4ceeee858e6c04 (patch)
tree03455b03b66dcbd840096b0f6baa79f5fb8b2f7d
parentc11eb3f0ea78f60a0daec3653750eee3cbb09163 (diff)
Remove Azure Pipelines
-rw-r--r--.azure-pipelines.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
deleted file mode 100644
index f463b22..0000000
--- a/.azure-pipelines.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-trigger:
-- master
-
-pr:
-- master
-
-jobs:
-- job: Linux
- pool:
- vmImage: 'ubuntu-16.04'
- steps:
- - script: |
- dotnet build -c Debug Mono.Cecil.sln
- displayName: 'Build'
- - script: |
- dotnet test --no-build -c Debug -f netcoreapp2.1 Mono.Cecil.sln
- displayName: 'Test .NET Core'
- - task: NuGetToolInstaller@0
- displayName: 'Install nuget'
- - task: NuGetCommand@2
- inputs:
- command: 'custom'
- arguments: 'install NUnit.Console -Version 3.9.0 -OutputDirectory ./packages'
- displayName: 'Get NUnit.Console'
- - script: |
- mono ./packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe ./Mono.Cecil.nunit
- displayName: 'Test .NET 4.0 using Mono'
-
-- job: Windows
- pool:
- vmImage: 'vs2017-win2016'
- steps:
- - script: |
- dotnet build -c Debug Mono.Cecil.sln
- displayName: 'Build'
- - script: |
- dotnet test --no-build -c Debug Mono.Cecil.sln
- displayName: 'Test'