-
-
Notifications
You must be signed in to change notification settings - Fork 132
49 lines (42 loc) · 1.06 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: '🏗️ Build jellyfin-ffmpeg'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- jellyfin
paths-ignore:
- '**/*.md'
pull_request:
branches:
- jellyfin
paths-ignore:
- '**/*.md'
jobs:
build_debian:
uses: ./.github/workflows/_meta.yaml
with:
distro: 'debian'
codenames: '["buster", "bullseye", "bookworm"]'
architectures: '["amd64", "arm64", "armhf"]'
release: false
build_ubuntu:
uses: ./.github/workflows/_meta.yaml
with:
distro: 'ubuntu'
codenames: '["focal", "jammy", "kinetic", "lunar"]'
architectures: '["amd64", "arm64", "armhf"]'
release: false
build_portable_windows:
uses: ./.github/workflows/_meta_portable.yaml
with:
os: 'windows'
architectures: '["win64"]'
release: false
build_portable_linux:
uses: ./.github/workflows/_meta_portable.yaml
with:
os: 'linux'
architectures: '["amd64", "arm64"]'
release: false