Skip to content

Release

Release #50

Workflow file for this run

name: Release
run-name: Release
on:
workflow_dispatch:
permissions:
contents: write
jobs:
prepare_release:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create empty release
id: release
uses: softprops/action-gh-release@v1
with:
tag_name: v2.3.0
token: ${{ secrets.GITHUB_TOKEN }}
target_commitish: main
draft: true
outputs:
release_id: ${{ steps.release.outputs.id }}
rootfs:
runs-on: ubuntu-latest
needs: [prepare_release]
name: Build rootfs
strategy:
matrix:
flavor:
- desktop
- server
suite:
- jammy
- noble
steps:
- name: Get more disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout LFS
shell: bash
run: git lfs fetch && git lfs checkout
- name: Install dependencies
shell: bash
run: |
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y build-essential gcc-aarch64-linux-gnu bison \
qemu-user-static qemu-system-arm qemu-efi u-boot-tools binfmt-support \
debootstrap flex libssl-dev bc rsync kmod cpio xz-utils fakeroot parted \
udev dosfstools uuid-runtime git-lfs device-tree-compiler python2 python3 \
python-is-python3 fdisk bc debhelper python3-pyelftools python3-setuptools \
python3-distutils python3-pkg-resources swig libfdt-dev libpython3-dev dctrl-tools
- name: Build
shell: bash
run: sudo ./build.sh --suite=${{ matrix.suite }} --flavor=${{ matrix.flavor }} --rootfs-only --launchpad
- name: Upload
uses: actions/[email protected]
with:
name: ubuntu-${{ matrix.suite == 'jammy' && '22.04' || matrix.suite == 'noble' && '24.04' }}-preinstalled-${{ matrix.flavor }}-arm64-rootfs
path: ./build/ubuntu-${{ matrix.suite == 'jammy' && '22.04' || matrix.suite == 'noble' && '24.04' }}-preinstalled-${{ matrix.flavor }}-arm64.rootfs.tar.xz
if-no-files-found: error
build:
runs-on: ubuntu-latest
needs: [rootfs, prepare_release]
name: Build image
strategy:
matrix:
board:
- orangepi-3b
- orangepi-5
- orangepi-5b
- orangepi-5-plus
- orangepi-5-pro
- rock-5d
- rock-5c
- rock-5b-plus
- rock-5b
- rock-5a
- rock-5-itx
- radxa-cm5-rpi-cm4-io
- radxa-cm5-io
- radxa-nx5-io
- radxa-zero3
- nanopc-t6
- nanopi-r6c
- nanopi-r6s
- indiedroid-nova
- mixtile-blade3
- mixtile-core3588e
- lubancat-4
- turing-rk1
- roc-rk3588s-pc
- armsom-sige7
- armsom-w3
flavor:
- desktop
- server
suite:
- jammy
- noble
steps:
- name: Get more disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout LFS
shell: bash
run: git lfs fetch && git lfs checkout
- name: Checkout rootfs
uses: actions/[email protected]
with:
name: ubuntu-${{ matrix.suite == 'jammy' && '22.04' || matrix.suite == 'noble' && '24.04' }}-preinstalled-${{ matrix.flavor }}-arm64-rootfs
path: ./build/
- name: Install dependencies
shell: bash
run: |
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y build-essential gcc-aarch64-linux-gnu bison \
qemu-user-static qemu-system-arm qemu-efi u-boot-tools binfmt-support \
debootstrap flex libssl-dev bc rsync kmod cpio xz-utils fakeroot parted \
udev dosfstools uuid-runtime git-lfs device-tree-compiler python2 python3 \
python-is-python3 fdisk bc debhelper python3-pyelftools python3-setuptools \
python3-distutils python3-pkg-resources swig libfdt-dev libpython3-dev dctrl-tools
- name: Build
shell: bash
run: sudo ./build.sh --board=${{ matrix.board }} --suite=${{ matrix.suite }} --flavor=${{ matrix.flavor }} --launchpad
- name: Upload
if: needs.prepare_release.outputs.release_id != ''
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ needs.prepare_release.outputs.release_id }}
file: images/ubuntu-*-preinstalled-*-arm64-${{ matrix.board }}.*
draft: true
overwrite: true
- name: Clean cache
shell: bash
run: sync && sudo rm -rf ./images/ ./build/ && sync