aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-02-10 21:04:39 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-02-10 21:04:39 +0100
commit236e21efcb8ad0bbad2b3d0b6fc8735f3659d291 (patch)
tree2a05fb6443d8212af3151d7f9630244ffc5d0724
parent30ec203effac33896e25f67d9e30ea4ac649cc5c (diff)
Fixed extension of compat checker and added err_ignore flag.
-rw-r--r--.drone.yml12
1 files changed, 8 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml
index 5493e427c..82a9ce7da 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -77,32 +77,36 @@ steps:
- name: run-dotnet-compat-common
image: microsoft/dotnet:2-runtime
+ err_ignore: true
commands:
- - dotnet /tools/CompatibilityCheckerCoreCLI /current-release/Jellyfin.Common.dll /release/Jellyfin.Common.dll
+ - dotnet /tools/CompatibilityCheckerCoreCLI.dll /current-release/Jellyfin.Common.dll /release/Jellyfin.Common.dll
when:
event:
- pull_request
- name: run-dotnet-compat-model
image: microsoft/dotnet:2-runtime
+ err_ignore: true
commands:
- - dotnet /tools/CompatibilityCheckerCoreCLI /current-release/Jellyfin.Model.dll /release/Jellyfin.Model.dll
+ - dotnet /tools/CompatibilityCheckerCoreCLI.dll /current-release/Jellyfin.Model.dll /release/Jellyfin.Model.dll
when:
event:
- pull_request
- name: run-dotnet-compat-controller
image: microsoft/dotnet:2-runtime
+ err_ignore: true
commands:
- - dotnet /tools/CompatibilityCheckerCoreCLI /current-release/Jellyfin.Controller.dll /release/Jellyfin.Controller.dll
+ - dotnet /tools/CompatibilityCheckerCoreCLI.dll /current-release/Jellyfin.Controller.dll /release/Jellyfin.Controller.dll
when:
event:
- pull_request
- name: run-dotnet-compat-naming
image: microsoft/dotnet:2-runtime
+ err_ignore: true
commands:
- - dotnet /tools/CompatibilityCheckerCoreCLI /current-release/Jellyfin.Naming.dll /release/Jellyfin.Naming.dll
+ - dotnet /tools/CompatibilityCheckerCoreCLI.dll /current-release/Jellyfin.Naming.dll /release/Jellyfin.Naming.dll
when:
event:
- pull_request