aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-13 20:46:59 +0100
committerGitHub <noreply@github.com>2019-03-13 20:46:59 +0100
commit6507a9b2eef952f6cf54b70ca09ab936e570ac01 (patch)
tree22ad461315db01614de1890d5bd7d43b922c9101
parent605bf0e8c3836d561ecd5626f25f995eb933b1bb (diff)
parent4cc4d57a782441f02f8901af29634ffbfd4a2fc2 (diff)
Merge pull request #1104 from EraYaN/disable-abi-check-on-drone
Disable the Drone CI ABI check
-rw-r--r--.drone.yml81
1 files changed, 0 insertions, 81 deletions
diff --git a/.drone.yml b/.drone.yml
index 7705f4f93..87c8e414e 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -28,84 +28,3 @@ steps:
commands:
- dotnet publish "Jellyfin.Server" --configuration Release --output "../ci/ci-release"
----
-
-kind: pipeline
-name: check-abi
-
-steps:
-- name: submodules
- image: docker:git
- commands:
- - git submodule update --init --recursive
-
-- name: build
- image: microsoft/dotnet:2-sdk
- commands:
- - dotnet publish "Jellyfin.Server" --configuration Release --output "../ci/ci-release"
-
-- name: clone-dotnet-compat
- image: docker:git
- commands:
- - git clone --depth 1 https://github.com/EraYaN/dotnet-compatibility ci/dotnet-compatibility
-
-- name: build-dotnet-compat
- image: microsoft/dotnet:2-sdk
- commands:
- - dotnet publish "ci/dotnet-compatibility/CompatibilityCheckerCoreCLI" --configuration Release --output "../../ci-tools"
-
-- name: download-last-nuget-release-common
- image: plugins/download
- settings:
- source: https://www.nuget.org/api/v2/package/Jellyfin.Common
- destination: ci/Jellyfin.Common.nupkg
-
-- name: download-last-nuget-release-model
- image: plugins/download
- settings:
- source: https://www.nuget.org/api/v2/package/Jellyfin.Model
- destination: ci/Jellyfin.Model.nupkg
-
-- name: download-last-nuget-release-controller
- image: plugins/download
- settings:
- source: https://www.nuget.org/api/v2/package/Jellyfin.Controller
- destination: ci/Jellyfin.Controller.nupkg
-
-- name: download-last-nuget-release-naming
- image: plugins/download
- settings:
- source: https://www.nuget.org/api/v2/package/Jellyfin.Naming
- destination: ci/Jellyfin.Naming.nupkg
-
-- name: extract-downloaded-nuget-packages
- image: garthk/unzip
- commands:
- - unzip -j ci/Jellyfin.Common.nupkg "*.dll" -d ci/nuget-packages
- - unzip -j ci/Jellyfin.Model.nupkg "*.dll" -d ci/nuget-packages
- - unzip -j ci/Jellyfin.Controller.nupkg "*.dll" -d ci/nuget-packages
- - unzip -j ci/Jellyfin.Naming.nupkg "*.dll" -d ci/nuget-packages
-
-- name: run-dotnet-compat-common
- image: microsoft/dotnet:2-runtime
- err_ignore: true
- commands:
- - dotnet ci/ci-tools/CompatibilityCheckerCoreCLI.dll ci/nuget-packages/MediaBrowser.Common.dll ci/ci-release/MediaBrowser.Common.dll
-
-- name: run-dotnet-compat-model
- image: microsoft/dotnet:2-runtime
- err_ignore: true
- commands:
- - dotnet ci/ci-tools/CompatibilityCheckerCoreCLI.dll ci/nuget-packages/MediaBrowser.Model.dll ci/ci-release/MediaBrowser.Model.dll
-
-- name: run-dotnet-compat-controller
- image: microsoft/dotnet:2-runtime
- err_ignore: true
- commands:
- - dotnet ci/ci-tools/CompatibilityCheckerCoreCLI.dll ci/nuget-packages/MediaBrowser.Controller.dll ci/ci-release/MediaBrowser.Controller.dll
-
-- name: run-dotnet-compat-naming
- image: microsoft/dotnet:2-runtime
- err_ignore: true
- commands:
- - dotnet ci/ci-tools/CompatibilityCheckerCoreCLI.dll ci/nuget-packages/Emby.Naming.dll ci/ci-release/Emby.Naming.dll