You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
576 B
39 lines
576 B
6 years ago
|
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
|