forked from ophub/amlogic-s9xxx-openwrt
-
Notifications
You must be signed in to change notification settings - Fork 10
136 lines (127 loc) · 4.77 KB
/
packaging-openwrt-for-qemu-etc.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
#=====================================================================================
# Description: Packaging OpenWrt for qemu, allwinner, rockchip and amlogic
# Copyright (C) 2021 https://github.com/unifreq/openwrt_packit
# Copyright (C) 2021 https://github.com/ophub/flippy-openwrt-actions
#=====================================================================================
name: Packaging QEMU and others
on:
repository_dispatch:
workflow_dispatch:
inputs:
branch:
description: "Select the source branch"
required: false
default: "lede"
type: choice
options:
- lede
- official
openwrt_soc:
description: "Select device SoC"
required: false
default: "qemu_vplus_beikeyun_l1pro_rock5b_h66k_h68k_h88k_r66s_r68s_e25"
type: choice
options:
- all
- qemu_vplus_beikeyun_l1pro_rock5b_h66k_h68k_h88k_r66s_r68s_e25
- s922x_s922x-n2_s905x3_s905x2_s912_s905d_s905
- qemu
- vplus
- beikeyun
- l1pro
- rock5b
- h66k
- h68k
- h88k
- r66s
- r68s
- e25
- s922x
- s922x-n2
- s905x3
- s905x2
- s912
- s905d
- s905
- diy
openwrt_kernel:
description: "Select kernel version"
required: false
default: "5.15.85_6.1.1"
type: choice
options:
- 5.4.225_5.10.160_5.15.85
- 5.4.225_5.10.160
- 5.10.160_5.15.85
- 5.15.85_6.1.1
- 5.4.225
- 5.10.160
- 5.15.85
- 6.1.1
auto_kernel:
description: "Auto use the latest kernel"
required: false
default: true
type: boolean
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`
sudo rm -rf /usr/share/dotnet /etc/apt/sources.list.d /usr/local/lib/android 2>/dev/null
sudo -E apt-get -y purge azure-cli ghc* zulu* hhvm llvm* firefox google* dotnet* powershell openjdk* adoptopenjdk* mongodb* dotnet* moby* snapd* || true
sudo -E apt-get -qq update -y
sudo -E apt-get -qq full-upgrade -y
sudo -E apt-get -qq install -y $(curl -fsSL https://is.gd/depend_ubuntu2204_openwrt)
sudo -E apt-get -qq autoremove --purge
sudo -E apt-get -qq clean
sudo timedatectl set-timezone "${TZ}"
echo "status=success" >> ${GITHUB_OUTPUT}
- name: Download armvirt file
id: down
if: ${{ steps.init.outputs.status }} == 'success' && !cancelled()
run: |
openwrt_url="$(curl --header "authorization: Bearer ${{ secrets.GH_TOKEN }}" -s "https://api.github.com/repos/${GITHUB_REPOSITORY}/releases" | grep -o "OpenWrt_.*${{ inputs.branch }}.*/.*rootfs.tar.gz" | head -n 1)"
[[ -z "${openwrt_url}" ]] && echo -e "OpenWrt file not found!" && exit 1
#
armvirt_tarfile_path="openwrt/bin/targets/armvirt/64"
[[ -d "${armvirt_tarfile_path}" ]] || mkdir -p ${armvirt_tarfile_path}
#
wget -q -P "${armvirt_tarfile_path}" "https://github.com/${GITHUB_REPOSITORY}/releases/download/${openwrt_url}"
[[ "${?}" -ne "0" ]] && echo -e "The armvirt file download failed!" && exit 1
echo "status=success" >> ${GITHUB_OUTPUT}
- name: Packaging OpenWrt
uses: ophub/flippy-openwrt-actions@main
if: ${{ steps.down.outputs.status }} == 'success' && !cancelled()
env:
OPENWRT_ARMVIRT: openwrt/bin/targets/*/*/*rootfs.tar.gz
KERNEL_REPO_URL: https://github.com/ophub/kernel/tree/main/pub
KERNEL_VERSION_DIR: stable_rk3588
PACKAGE_SOC: ${{ inputs.openwrt_soc }}
KERNEL_VERSION_NAME: ${{ inputs.openwrt_kernel }}
KERNEL_AUTO_LATEST: ${{ inputs.auto_kernel }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Upload OpenWrt Firmware to Release
uses: ncipollo/release-action@main
if: ${{ env.PACKAGED_STATUS }} == 'success' && !cancelled()
with:
tag: OpenWrt_aarch64_${{ env.PACKAGED_OUTPUTDATE }}
artifacts: ${{ env.PACKAGED_OUTPUTPATH }}/*
allowUpdates: true
token: ${{ secrets.GH_TOKEN }}
body: |
This is OpenWrt firmware for Armvirt 64
* Firmware information
Default IP: 192.168.1.1
Default username: root
Default password: password