Skip to content

Latest commit

 

History

History
57 lines (52 loc) · 2.86 KB

using-libreelec-gha.md

File metadata and controls

57 lines (52 loc) · 2.86 KB

Building LibreELEC

Using GitHub Actions Workflows CI/CD

The LibreELEC Team have developed CI/CD based on GitHub Actions Workflows to enable continuous delivery of nightly and release images and addons.

Both tested scenarios below can be deployed to provide support for your GitHub Actions. The customise build guides will help you deploy your GitHub Action Runners ready to build LibreELEC.

graph TD;
    ubuntu[ubuntu 22.04 host]-->docker-ubuntu-runner11["Docker ubuntu (inst1)"]
    ubuntu[ubuntu 22.04 host]-->docker-ubuntu-runner12["Docker ubuntu (inst2)"];
    ubuntu[ubuntu 22.04 host]-->docker-ubuntu-runner13["Docker ubuntu (inst3)"];
    ubuntu[ubuntu 22.04 host]-->docker-ubuntu-runner14["Docker ubuntu (inst4)"];
    docker-ubuntu-runner11-->ar11["with actions-runner (inst1)"];
    docker-ubuntu-runner12-->ar12["with actions-runner (inst2)"];
    docker-ubuntu-runner13-->ar13["with actions-runner (inst3)"];
    docker-ubuntu-runner14-->ar14["with actions-runner (inst4)"];
    ar11-->ghaj1((GitHub Workflow Job));
    ar12-->ghaj2((GitHub Workflow Job));
    ar13-->ghaj3((GitHub Workflow Job));
    ar14-->ghaj4((GitHub Workflow Job));
Loading
graph TD;
    proxmox-->lxc-ubuntu-runner11["LXC ubuntu (runner11)"];
    proxmox-->lxc-ubuntu-runner12["LXC ubuntu (runner12)"];
    proxmox-->lxc-ubuntu-runner13["LXC ubuntu (runner13)"];
    proxmox-->lxc-ubuntu-runner14["LXC ubuntu (runner14)"];
    lxc-ubuntu-runner11-->ar11["with actions-runner (runner11)"];
    lxc-ubuntu-runner12-->ar12["with actions-runner (runner12)"];
    lxc-ubuntu-runner13-->ar13["with actions-runner (runner13)"];
    lxc-ubuntu-runner14-->ar14["with actions-runner (runner14)"];
    ar11-->ghaj1((GitHub Workflow Job));
    ar12-->ghaj2((GitHub Workflow Job));
    ar13-->ghaj3((GitHub Workflow Job));
    ar14-->ghaj4((GitHub Workflow Job));
Loading

Information that you should take into consideration before building your repositories Runners.

Future CI/CD