瀏覽代碼

Merge pull request #123 from nvllsvm/droneci

Add Drone CI
Anthony Lavado 6 年之前
父節點
當前提交
b36b526f27
共有 2 個文件被更改,包括 38 次插入10 次删除
  1. 38 0
      .drone.yml
  2. 0 10
      .gitlab-ci.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

+ 0 - 10
.gitlab-ci.yml

@@ -1,10 +0,0 @@
-variables:
-  GIT_DEPTH: "1"
-  GIT_SUBMODULE_STRATEGY: "recursive"
-
-build:docker:
-  image: docker
-  services:
-    - docker:dind
-  script:
-    - docker build .