Skip to content

Build

Build #10

Workflow file for this run

name: Build
on:
workflow_dispatch:
inputs:
launchpad:
description: use launchpad
required: true
default: false
type: boolean
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- orangepi-5
- orangepi-5b
- orangepi-5-plus
- rock-5b
- rock-5a
- radxa-cm5-io
- nanopc-t6
- nanopi-r6c
- nanopi-r6s
- indiedroid-nova
- mixtile-blade3
- lubancat-4
steps:
- name: Get more disk space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 2048
swap-size-mb: 1024
remove-dotnet: 'true'
remove-android: 'true'
- name: Checkout code
uses: actions/checkout@v3
with:
repository: Joshua-Riek/ubuntu-rockchip
- 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
- name: Build kernel
shell: bash
if: inputs.launchpad == 'false'
run: sudo ./build.sh -b ${{ matrix.platform }} --kernel-only
- name: Build u-boot
shell: bash
if: inputs.launchpad == 'false'
run: sudo ./build.sh -b ${{ matrix.platform }} --uboot-only
- name: Build image
shell: bash
run: LAUNCHPAD="${{ inputs.launchpad }}" sudo ./build.sh -b ${{ matrix.platform }}
- name: Upload server artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-22.04.3-preinstalled-server-arm64-${{ matrix.platform }}
path: ./images/ubuntu-22.04.3-preinstalled-server-arm64-${{ matrix.platform }}.*
if-no-files-found: error
- name: Upload desktop artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-22.04.3-preinstalled-desktop-arm64-${{ matrix.platform }}
path: ./images/ubuntu-22.04.3-preinstalled-desktop-arm64-${{ matrix.platform }}.*
if-no-files-found: error