forked from ophub/amlogic-s9xxx-armbian
-
Notifications
You must be signed in to change notification settings - Fork 0
187 lines (177 loc) · 5.85 KB
/
rebuild-armbian.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#==========================================================================
# Description: Build Armbian
# Copyright (C) 2021 https://github.com/ophub/amlogic-s9xxx-armbian
#==========================================================================
name: Rebuild armbian
on:
repository_dispatch:
workflow_dispatch:
inputs:
armbian_url:
description: "Set Armbian file path."
required: false
default: ""
armbian_board:
description: "Select device board."
required: false
default: "all"
type: choice
options:
- all
- s922x_s905x3_s905d_s912_s905l3a
- r66s_r68s_h66k_h68k_e25
- eaidk-610_king3399_tn3399_kylin3399
- vplus_tqc-a01_tanix-tx6
- a311d
- s922x
- s922x-reva
- s922x-ct2000
- s905x3
- s905x3-b
- s905x2
- s912
- s912-m8s-pro
- s905d
- s905d-ki-pro
- s905x
- s905w
- s905
- s905l3a
- s905l2
- s905lb-r3300l
- rock5b
- h88k
- r66s
- r68s
- h66k
- h68k
- e25
- eaidk-610
- king3399
- kylin3399
- tn3399
- beikeyun
- l1pro
- vplus
- tqc-a01
- tanix-tx6
armbian_kernel:
description: "Select kernel version."
required: false
default: "5.15.1_6.1.1"
type: choice
options:
- 5.4.1_5.10.1_5.15.1
- 5.4.1_5.10.1
- 5.10.1_5.15.1
- 5.15.1_6.1.1
- 5.4.1
- 5.10.1
- 5.15.1
- 6.1.1
auto_kernel:
description: "Auto use the latest kernel."
required: false
default: true
type: boolean
kernel_repo:
description: "Set the kernel repository."
required: false
default: "https://github.com/ophub/kernel/tree/main/pub"
armbian_size:
description: "Set armbian rootfs size(Unit: MiB)."
required: false
default: "2560"
armbian_fstype:
description: "Set armbian rootfs type."
required: false
default: "ext4"
type: choice
options:
- ext4
- btrfs
armbian_sign:
description: "Set armbian custom name."
required: false
default: ""
env:
TZ: America/New_York
jobs:
build:
runs-on: ubuntu-22.04
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialization environment
id: init
env:
DEBIAN_FRONTEND: noninteractive
run: |
docker rmi `docker images -q`
[[ -n "${AGENT_TOOLSDIRECTORY}" ]] && sudo rm -rf "${AGENT_TOOLSDIRECTORY}"
sudo rm -rf /usr/share/dotnet /etc/apt/sources.list.d /usr/local/lib/android 2>/dev/null
sudo -E apt-get -y update
sudo -E apt-get -y purge azure-cli ghc* zulu* llvm* firefox google* dotnet* powershell openjdk* mongodb* moby* || true
sudo -E apt-get -y install $(curl -fsSL https://is.gd/depend_ubuntu2204_armbian)
sudo -E systemctl daemon-reload
#sudo -E apt-get -y full-upgrade
sudo -E apt-get -y autoremove --purge
sudo -E apt-get clean
# Get the url of the rebuild armbian file
armbian_url="${{ inputs.armbian_url }}"
if [[ -z "${armbian_url}" ]]; then
armbian_site="https://armbian.tnahosting.net/dl/odroidn2/archive/"
armbian_name="Armbian.*jammy.*.img.xz"
armbian_file=$(curl -s "${armbian_site}" | grep -oE "${armbian_name}" | head -n 1)
if [[ -n "${armbian_file}" ]]; then
armbian_url="${armbian_site}${armbian_file}"
else
echo -e "Invalid download path: [ ${armbian_site} ]"
exit 1
fi
fi
echo "ARMBIAN_URL=${armbian_url}" >> ${GITHUB_ENV}
# Get the release name of the rebuild armbian file
set_release="_"
ARR_RELEASE=("jammy" "focal" "bullseye" "buster" "sid")
i=1
for r in ${ARR_RELEASE[*]}; do
if [[ "${armbian_url}" == *"${r}"* ]]; then
set_release="_${r}_"
break
fi
let i++
done
echo "ARMBIAN_RELEASE=${set_release}" >> ${GITHUB_ENV}
sudo timedatectl set-timezone "${TZ}"
echo "status=success" >> ${GITHUB_OUTPUT}
- name: Rebuild Armbian
uses: ophub/amlogic-s9xxx-armbian@main
if: ${{ env.ARMBIAN_URL }} != '' && !cancelled()
with:
build_target: armbian
armbian_path: ${{ env.ARMBIAN_URL }}
armbian_board: ${{ inputs.armbian_board }}
armbian_kernel: ${{ inputs.armbian_kernel }}
auto_kernel: ${{ inputs.auto_kernel }}
kernel_repo: ${{ inputs.kernel_repo }}
armbian_size: ${{ inputs.armbian_size }}
armbian_fstype: ${{ inputs.armbian_fstype }}
armbian_sign: ${{ inputs.armbian_sign }}
gh_token: ${{ secrets.GH_TOKEN }}
- name: Upload Armbian image to Release
uses: ncipollo/release-action@main
if: ${{ env.PACKAGED_STATUS }} == 'success' && !cancelled()
with:
tag: Armbian${{ env.ARMBIAN_RELEASE }}${{ env.PACKAGED_OUTPUTDATE }}
artifacts: ${{ env.PACKAGED_OUTPUTPATH }}/*
allowUpdates: true
token: ${{ secrets.GH_TOKEN }}
body: |
These are the Armbian OS image
* OS information
Default username: root
Default password: 1234
Install command: armbian-install
Update command: armbian-update