diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2018-12-12 23:54:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-12 23:54:57 -0500 |
| commit | b36b526f27ebd9ac716d743eea26e65407ceeea4 (patch) | |
| tree | 126e413876935328840faf9d8055988342e2e15e | |
| parent | c9f324af9f3cd28150f413f0ea8b6fda9d2dff10 (diff) | |
| parent | d2e495ae5266e7057b608d9f5d58476992f35577 (diff) | |
Merge pull request #123 from nvllsvm/droneci
Add Drone CI
| -rw-r--r-- | .drone.yml | 38 | ||||
| -rw-r--r-- | .gitlab-ci.yml | 10 |
2 files changed, 38 insertions, 10 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 000000000..bacce407b --- /dev/null +++ b/.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 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index f9c205bcf..000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,10 +0,0 @@ -variables: - GIT_DEPTH: "1" - GIT_SUBMODULE_STRATEGY: "recursive" - -build:docker: - image: docker - services: - - docker:dind - script: - - docker build . |
