forked from ophub/amlogic-s9xxx-armbian
-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (68 loc) · 2.54 KB
/
compile-kernel.yml
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
#==========================================================================
# Description: Compile the Armbian kernel
# Copyright (C) 2021 https://github.com/ophub/amlogic-s9xxx-armbian
#==========================================================================
name: Compile the kernel
on:
repository_dispatch:
workflow_dispatch:
inputs:
kernel_repo:
description: "Source: kernel.org / unifreq"
required: false
default: "unifreq"
kernel_version:
description: "Kernel version: 5.10.100"
required: false
default: "5.15.25_5.10.100"
kernel_auto:
description: "Auto use the latest kernel"
required: false
default: "true"
kernel_sign:
description: "Set the kernel custom signature"
required: false
default: "-ophub"
kernel_config:
description: "Set the path of kernel .config"
required: false
default: ""
env:
TZ: Asia/Shanghai
jobs:
build:
runs-on: ubuntu-22.04
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Initialization environment
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo rm -rf /etc/apt/sources.list.d/* /usr/share/dotnet /usr/local/lib/android /opt/ghc
sudo -E apt-get -qq update
sudo -E apt-get -qq install -y $(curl -fsSL https://is.gd/depend_ubuntu2204_armbian)
sudo -E apt-get -qq autoremove --purge
sudo -E apt-get -qq clean
sudo timedatectl set-timezone "$TZ"
echo "COMPILE_STARTINGTIME=$(date +"%m.%d.%H%M")" >> $GITHUB_ENV
- name: Compile the kernel for Amlogic s9xxx
uses: ophub/amlogic-s9xxx-armbian@main
with:
build_target: kernel
kernel_repo: ${{ github.event.inputs.kernel_repo }}
kernel_version: ${{ github.event.inputs.kernel_version }}
kernel_auto: ${{ github.event.inputs.kernel_auto }}
kernel_sign: ${{ github.event.inputs.kernel_sign }}
kernel_config: ${{ github.event.inputs.kernel_config }}
- name: Upload Kernel to Release
uses: ncipollo/release-action@main
if: env.PACKAGED_STATUS == 'success' && !cancelled()
with:
tag: kernel_${{ env.PACKAGED_OUTPUTTAGS }}
artifacts: ${{ env.PACKAGED_OUTPUTPATH }}/*
allowUpdates: true
token: ${{ secrets.GH_TOKEN }}
body: |
The kernel can be used to compile Armbian and OpenWrt.