aboutsummaryrefslogtreecommitdiff
path: root/build.py
blob: ee51441c3e869e62ba34051005f47308e38f5dfd (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#!/usr/bin/env python3

# build.py - Build packages in a Docker wrapper
#
# Part of the Jellyfin CI system
###############################################################################

from datetime import datetime
from email.utils import format_datetime, localtime
from os import system
import os.path
from subprocess import run, PIPE
import sys

from git import Repo

# Determine top level directory of this repository ("jellyfin-packaging")
revparse = run(["git", "rev-parse", "--show-toplevel"], stdout=PIPE)
repo_root_dir = revparse.stdout.decode().strip()

# Base Docker commands
docker_build_cmd = "docker build --progress=plain --no-cache"
docker_run_cmd = "docker run --rm"

def build_package_deb(jvers, btype, barch, bvers):
    try:
        ostype = btype if btype in configurations.keys() else None
        if ostype is None:
            raise ValueError(f"{btype} is not a valid OS type in {configurations.keys()}")
        osversion = configurations[btype]['releases'][bvers] if bvers in configurations[btype]['releases'].keys() else None
        if osversion is None:
            raise ValueError(f"{bvers} is not a valid {btype} version in {configurations[btype]['releases'].keys()}")
        PARCH = configurations[btype]['archmaps'][barch]['PARCH'] if barch in configurations[btype]['archmaps'].keys() else None
        if PARCH is None:
            raise ValueError(f"{barch} is not a valid {btype} {bvers} architecture in {configurations[btype]['archmaps'].keys()}")
    except Exception as e:
        print(f"Invalid/unsupported arguments: {e}")
        exit(1)

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Set the cross-gcc version
    crossgccvers = configurations[btype]['cross-gcc'][bvers]

    # Prepare the debian changelog file
    changelog_src = f"{repo_root_dir}/debian/changelog.in"
    changelog_dst = f"{repo_root_dir}/debian/changelog"

    with open(changelog_src) as fh:
        changelog = fh.read()

    if "v" in jvers:
        comment = f"Jellyfin release {jvers}, see https://github.com/jellyfin/jellyfin/releases/{jvers} for details."
    else:
        comment = f"Jellyin unstable release {jvers}."
    jvers = jvers.replace('v', '')

    changelog = changelog.format(
        package_version=jvers,
        package_build=f"{btype[:3]}{bvers.replace('.', '')}",
        release_comment=comment,
        release_date=format_datetime(localtime())
    )

    with open(changelog_dst, "w") as fh:
        fh.write(changelog)

    # Use a unique docker image name for consistency
    imagename = f"{configurations[btype]['imagename']}-{jvers}_{barch}-{btype}-{bvers}"

    # Build the dockerfile and packages
    os.system(f"{docker_build_cmd} --build-arg PTYPE={ostype} --build-arg PVERSION={osversion} --build-arg PARCH={PARCH} --build-arg GCC_VERSION={crossgccvers} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")
    os.system(f"{docker_run_cmd} --volume {repo_root_dir}:/jellyfin --volume {repo_root_dir}/out/{btype}:/dist --name {imagename} {imagename}")


def build_package_rpm(jvers, btype, barch, bvers):
    pass


def build_linux(jvers, btype, barch, _bvers):
    try:
        PARCH = configurations[btype]['archmaps'][barch]['PARCH'] if barch in configurations[btype]['archmaps'].keys() else None
        if PARCH is None:
            raise ValueError(f"{barch} is not a valid {btype} {bvers} architecture in {configurations[btype]['archmaps'].keys()}")
        DARCH = configurations[btype]['archmaps'][barch]['DARCH']
    except Exception as e:
        print(f"Invalid/unsupported arguments: {e}")
        exit(1)

    jvers = jvers.replace('v', '')

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Use a unique docker image name for consistency
    imagename = f"{configurations[btype]['imagename']}-{jvers}_{barch}-{btype}"

    # Set the archive type (tar-gz or zip)
    archivetypes = f"{configurations[btype]['archivetypes']}"

    # Build the dockerfile and packages
    os.system(f"{docker_build_cmd} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")
    os.system(f"{docker_run_cmd} --volume {repo_root_dir}:/jellyfin --volume {repo_root_dir}/out/{btype}:/dist --env JVERS={jvers} --env BTYPE={btype} --env PARCH={PARCH} --env DTYPE=linux --env DARCH={DARCH} --env ARCHIVE_TYPES={archivetypes} --name {imagename} {imagename}")


def build_windows(jvers, btype, _barch, _bvers):
    try:
        PARCH = configurations[btype]['archmaps'][barch]['PARCH'] if barch in configurations[btype]['archmaps'].keys() else None
        if PARCH is None:
            raise ValueError(f"{barch} is not a valid {btype} {bvers} architecture in {configurations[btype]['archmaps'].keys()}")
        DARCH = configurations[btype]['archmaps'][barch]['DARCH']
    except Exception as e:
        print(f"Invalid/unsupported arguments: {e}")
        exit(1)

    jvers = jvers.replace('v', '')

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Use a unique docker image name for consistency
    imagename = f"{configurations[btype]['imagename']}-{jvers}_{barch}-{btype}"

    # Set the archive type (tar-gz or zip)
    archivetypes = f"{configurations[btype]['archivetypes']}"

    # Build the dockerfile and packages
    os.system(f"{docker_build_cmd} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")
    os.system(f"{docker_run_cmd} --volume {repo_root_dir}:/jellyfin --volume {repo_root_dir}/out/{btype}:/dist --env JVERS={jvers} --env BTYPE={btype} --env PARCH={PARCH} --env DTYPE=win --env DARCH={DARCH} --env ARCHIVE_TYPES={archivetypes} --name {imagename} {imagename}")




def build_macos(jvers, btype, barch, _bvers):
    try:
        PARCH = configurations[btype]['archmaps'][barch]['PARCH'] if barch in configurations[btype]['archmaps'].keys() else None
        if PARCH is None:
            raise ValueError(f"{barch} is not a valid {btype} {bvers} architecture in {configurations[btype]['archmaps'].keys()}")
        DARCH = configurations[btype]['archmaps'][barch]['DARCH']
    except Exception as e:
        print(f"Invalid/unsupported arguments: {e}")
        exit(1)

    jvers = jvers.replace('v', '')

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Use a unique docker image name for consistency
    imagename = f"{configurations[btype]['imagename']}-{jvers}_{barch}-{btype}"

    # Set the archive type (tar-gz or zip)
    archivetypes = f"{configurations[btype]['archivetypes']}"

    # Build the dockerfile and packages
    os.system(f"{docker_build_cmd} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")
    os.system(f"{docker_run_cmd} --volume {repo_root_dir}:/jellyfin --volume {repo_root_dir}/out/{btype}:/dist --env JVERS={jvers} --env BTYPE={btype} --env PARCH={PARCH} --env DTYPE=osx --env DARCH={DARCH} --env ARCHIVE_TYPES={archivetypes} --name {imagename} {imagename}")


def build_portable(jvers, btype, _barch, _bvers):
    jvers = jvers.replace('v', '')

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Use a unique docker image name for consistency
    imagename = f"{configurations[btype]['imagename']}-{jvers}_{btype}"

    # Set the archive type (tar-gz or zip)
    archivetypes = f"{configurations[btype]['archivetypes']}"

    # Build the dockerfile and packages
    os.system(f"{docker_build_cmd} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")
    os.system(f"{docker_run_cmd} --volume {repo_root_dir}:/jellyfin --volume {repo_root_dir}/out/{btype}:/dist --env JVERS={jvers} --env BTYPE={btype} --env ARCHIVE_TYPES={archivetypes} --name {imagename} {imagename}")


def build_docker(jvers, btype, _barch, _bvers):
    print("> Building Docker images...")
    print()

    # We build all architectures simultaneously to push a single tag, so no conditional checks
    architectures = configurations['docker']['archmaps'].keys()

    # Set the dockerfile
    dockerfile = configurations[btype]["dockerfile"]

    # Determine if this is a "latest"-type image (v in jvers) or not
    if "v" in jvers:
        is_latest = True
        version_suffix = True
    else:
        is_latest = False
        version_suffix = False

    jvers = jvers.replace('v', '')

    # Set today's date in a convenient format for use as an image suffix
    date = datetime.now().strftime("%Y%m%d-%H%M%S")

    images = list()
    for _barch in architectures:
        print(f">> Building Docker image for {_barch}...")
        print()

        # Get our ARCH variables from the archmaps
        PARCH = configurations['docker']['archmaps'][_barch]['PARCH']
        DARCH = configurations['docker']['archmaps'][_barch]['DARCH']
        QARCH = configurations['docker']['archmaps'][_barch]['QARCH']
        BARCH = configurations['docker']['archmaps'][_barch]['BARCH']

        # Use a unique docker image name for consistency
        if version_suffix:
            imagename = f"{configurations['docker']['imagename']}:{jvers}-{_barch}.{date}"
        else:
            imagename = f"{configurations['docker']['imagename']}:{jvers}-{_barch}"

        # Clean up any existing qemu static image
        os.system(f"{docker_run_cmd} --privileged multiarch/qemu-user-static:register --reset")
        print()

        # Build the dockerfile
        os.system(f"{docker_build_cmd} --build-arg PARCH={PARCH} --build-arg DARCH={DARCH} --build-arg QARCH={QARCH} --build-arg BARCH={BARCH} --file {repo_root_dir}/{dockerfile} --tag {imagename} {repo_root_dir}")

        images.append(imagename)
        print()

    # Build the manifests
    print(f">> Building Docker manifests...")

    if version_suffix:
        print(f">>> Building dated version manifest...")
        os.system(f"docker manifest create --amend {configurations['docker']['imagename']}:{jvers}.{date} {' '.join(images)}") 

    print(f">>> Building version manifest...")
    os.system(f"docker manifest create --amend {configurations['docker']['imagename']}:{jvers} {' '.join(images)}") 
    if is_latest:
        print(f">>> Building latest manifest...")
        os.system(f"docker manifest create --amend {configurations['docker']['imagename']}:latest {' '.join(images)}") 


# Define a map of possible configurations
configurations = {
    "debian": {
        "def": build_package_deb,
        "dockerfile": "debian/docker/Dockerfile",
        "imagename": "jellyfin-builder",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
            },
            "arm64": {
                "PARCH": "arm64",
            },
            "armhf": {
                "PARCH": "armhf",
            },
        },
        "releases": {
            "bullseye": "11",
            "bookworm": "12",
        },
        "cross-gcc": {
            "bullseye": "10",
            "bookworm": "12",
        },
    },
    "ubuntu": {
        "def": build_package_deb,
        "dockerfile": "debian/docker/Dockerfile",
        "imagename": "jellyfin-builder",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
            },
            "arm64": {
                "PARCH": "arm64",
            },
            "armhf": {
                "PARCH": "armhf",
            },
        },
        "releases": {
            "focal": "20.04",
            "jammy": "22.04",
            "noble": "24.04",
        },
        "cross-gcc": {
            "focal": "10",
            "jammy": "12",
            "noble": "12",
        },
    },
    "fedora": {
        "def": build_package_rpm,
    },
    "centos": {
        "def": build_package_rpm,
    },
    "linux": {
        "def": build_linux,
        "dockerfile": "portable/Dockerfile",
        "imagename": "jellyfin-builder",
        "archivetypes": "tar",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
                "DARCH": "x64",
            },
            "amd64-musl": {
                "PARCH": "amd64-musl",
                "DARCH": "musl-x64",
            },
            "arm64": {
                "PARCH": "arm64",
                "DARCH": "arm64",
            },
            "arm64-musl": {
                "PARCH": "arm64-musl",
                "DARCH": "musl-arm64",
            },
            "armhf": {
                "PARCH": "armhf",
                "DARCH": "arm",
            },
        },
    },
    "windows": {
        "def": build_windows,
        "dockerfile": "portable/Dockerfile",
        "imagename": "jellyfin-builder",
        "archivetypes": "zip",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
                "DARCH": "x64",
            },
            "arm64": {
                "PARCH": "arm64",
                "DARCH": "arm64",
            },
        },
    },
    "macos": {
        "def": build_macos,
        "dockerfile": "portable/Dockerfile",
        "imagename": "jellyfin-builder",
        "archivetypes": "tar",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
                "DARCH": "x64",
            },
            "arm64": {
                "PARCH": "arm64",
                "DARCH": "arm64",
            },
        },
    },
    "portable": {
        "def": build_portable,
        "dockerfile": "portable/Dockerfile",
        "imagename": "jellyfin-builder",
        "archivetypes": "tar,zip",
    },
    "docker": {
        "def": build_docker,
        "dockerfile": "docker/Dockerfile",
        "imagename": "jellyfin/jellyfin",
        "archmaps": {
            "amd64": {
                "PARCH": "amd64",
                "DARCH": "x64",
                "QARCH": "x86_64",
                "BARCH": "amd64",
            },
            "arm64": {
                "PARCH": "arm64",
                "DARCH": "arm64",
                "QARCH": "aarch64",
                "BARCH": "arm64v8",
            },
            "armhf": {
                "PARCH": "armhf",
                "DARCH": "arm",
                "QARCH": "arm",
                "BARCH": "arm32v7",
            },
        }
    },
}

def usage():
    print(f"{sys.argv[0]} JVERS BTYPE [BARCH] [BVERS]")
    print(f" JVERS: The Jellyfin version being built; stable releases should be tag names with a 'v' e.g. v10.9.0")
    print(f" BTYPE: A valid build OS type (debian, ubuntu, fedora, centos, docker, portable, linux, windows, macos)")
    print(f" BARCH: A valid build OS CPU architecture (empty [portable/docker], amd64, arm64, or armhf)")
    print(f" BVERS: A valid build OS version (packaged OS types only)")

try:
    jvers = sys.argv[1]
    btype = sys.argv[2]
except IndexError:
    usage()
    exit(1)
try:
    barch = sys.argv[3]
except IndexError:
    barch = None
try:
    bvers = sys.argv[4]
except IndexError:
    bvers = None

if jvers == "master":
    jvers = datetime.now().strftime("%Y%m%d%H")

configurations[btype]['def'](jvers, btype, barch, bvers)
bgstack15