diff options
| author | Andrew Rabert <ar@nullsum.net> | 2018-12-12 22:50:59 -0500 |
|---|---|---|
| committer | Andrew Rabert <ar@nullsum.net> | 2018-12-12 23:23:46 -0500 |
| commit | d2e495ae5266e7057b608d9f5d58476992f35577 (patch) | |
| tree | 421f430b81b6fb9d7c03fd623ef89339c3deb4c9 | |
| parent | ba9ce4dcb9eed92984caa865101af75705940a76 (diff) | |
Add Drone CI
| -rw-r--r-- | .drone.yml | 38 |
1 files changed, 38 insertions, 0 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 |
