소스 검색

Add Drone CI

Andrew Rabert 6 년 전
부모
커밋
d2e495ae52
1개의 변경된 파일38개의 추가작업 그리고 0개의 파일을 삭제
  1. 38 0
      .drone.yml

+ 38 - 0
.drone.yml

@@ -0,0 +1,38 @@
+kind: pipeline
+name: build:debian
+
+clone:
+  depth: 1
+
+steps:
+- name: submodules
+  image: docker:git
+  commands:
+    - git submodule update --init
+- name: build:debian
+  image: plugins/docker
+  group: build
+  settings:
+    repo: jellyfin/jellyfin
+    dry_run: true
+    dockerfile: Dockerfile.debian_package
+
+
+---
+kind: pipeline
+name: build:docker
+
+clone:
+  depth: 1
+
+steps:
+- name: submodules
+  image: docker:git
+  commands:
+    - git submodule update --init
+- name: build:docker
+  image: plugins/docker
+  group: build
+  settings:
+    repo: jellyfin/jellyfin
+    dry_run: true