mirror of
https://github.com/spritsail/plex-media-server.git
synced 2025-06-25 19:30:55 +00:00
Build multiarch amd64/arm64 Plex images
Signed-off-by: Adam Dodman <adam@adam-ant.co.uk> Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
128
.drone.star
Normal file
128
.drone.star
Normal file
@ -0,0 +1,128 @@
|
||||
repo = "spritsail/plex-media-server"
|
||||
architectures = ["amd64", "arm64"]
|
||||
publish_branches = ["master", "pass"]
|
||||
|
||||
def main(ctx):
|
||||
builds = []
|
||||
depends_on = []
|
||||
|
||||
for arch in architectures:
|
||||
key = "build-%s" % arch
|
||||
builds.append(step(arch, key))
|
||||
depends_on.append(key)
|
||||
|
||||
if ctx.build.branch in publish_branches:
|
||||
builds.append(publish(depends_on))
|
||||
builds.append(update_readme())
|
||||
|
||||
return builds
|
||||
|
||||
def step(arch, key):
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": key,
|
||||
"platform": {
|
||||
"os": "linux",
|
||||
"arch": arch,
|
||||
},
|
||||
"steps": [
|
||||
{
|
||||
"name": "build",
|
||||
"pull": "always",
|
||||
"image": "spritsail/docker-build",
|
||||
"settings": {
|
||||
"make": "true",
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "test-bin",
|
||||
"pull": "always",
|
||||
"image": "spritsail/docker-test",
|
||||
"settings": {
|
||||
"run": "busybox && curl --version && xmlstarlet --version"
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "test",
|
||||
"pull": "always",
|
||||
"image": "spritsail/docker-test",
|
||||
"settings": {
|
||||
"curl": ":32400/identity",
|
||||
"delay": 5,
|
||||
"pipe": "xmlstarlet sel -t -v \"/MediaContainer/@version\" | grep -qw \"$(label io.spritsail.version.plex | cut -d- -f1)\"",
|
||||
"retry": 10
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "publish",
|
||||
"pull": "always",
|
||||
"image": "spritsail/docker-publish",
|
||||
"settings": {
|
||||
"registry": {"from_secret": "registry_url"},
|
||||
"login": {"from_secret": "registry_login"},
|
||||
},
|
||||
"when": {
|
||||
"branch": publish_branches,
|
||||
"event": ["push"],
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
def publish(depends_on):
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": "publish-manifest",
|
||||
"depends_on": depends_on,
|
||||
"platform": {
|
||||
"os": "linux",
|
||||
},
|
||||
"steps": [
|
||||
{
|
||||
"name": "publish",
|
||||
"image": "spritsail/docker-multiarch-publish",
|
||||
"pull": "always",
|
||||
"settings": {
|
||||
"tags": [
|
||||
"latest",
|
||||
"%label io.spritsail.version.plex | %remsuf [0-9a-f]+$ | %auto 2"
|
||||
],
|
||||
"src_registry": {"from_secret": "registry_url"},
|
||||
"src_login": {"from_secret": "registry_login"},
|
||||
"dest_repo": repo,
|
||||
"dest_login": {"from_secret": "docker_login"},
|
||||
},
|
||||
"when": {
|
||||
"branch": publish_branches,
|
||||
"event": ["push"],
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
def update_readme():
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": "update-readme",
|
||||
"depends_on": [
|
||||
"publish-manifest",
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"name": "dockerhub-readme",
|
||||
"pull": "always",
|
||||
"image": "jlesage/drone-push-readme",
|
||||
"settings": {
|
||||
"repo": repo,
|
||||
"username": {"from_secret": "docker_username"},
|
||||
"password": {"from_secret": "docker_password"},
|
||||
},
|
||||
"when": {
|
||||
"branch": publish_branches,
|
||||
"event": ["push"],
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
# vim: ft=python sw=2
|
Reference in New Issue
Block a user