Skip to content

Commit

Permalink
Added Debug build and seperate the check-abi pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
EraYaN committed Feb 12, 2019
1 parent 8055b70 commit 3f878d6
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
---
kind: pipeline
name: build
name: build-debug

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 Debug --output "../ci/ci-debug"

---
kind: pipeline
name: build-release

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"

---

kind: pipeline
name: check-abi

steps:
- name: submodules
Expand Down

0 comments on commit 3f878d6

Please sign in to comment.