Browse Source

Add Drone CI

Andrew Rabert 6 năm trước cách đây
mục cha
commit
d2e495ae52
1 tập tin đã thay đổi với 38 bổ sung0 xóa
  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