forked from gukey/LEDE-x86_64
-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (93 loc) · 2.92 KB
/
Lean.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
#=================================================
# Description: Build OpenWrt using GitHub Actions
# Lisence: Lean_Redmi AC2100
# Author: kenzo
#=================================================
name: Lean_Redmi AC2100
on:
release:
types: [published]
push:
branches:
- master
paths:
- '.config'
# schedule:
# - cron: 0 8 * * 5
watch:
types: [started]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: 检查
uses: actions/checkout@master
- name: 初始化环境
env:
DEBIAN_FRONTEND: noninteractive
run: |
docker rmi `docker images -q`
echo "Deleting files, please wait ..."
sudo rm -rf \
/usr/share/dotnet \
/etc/mysql \
/etc/php
sudo -E apt-get -y purge \
azure-cli \
ghc* \
zulu* \
hhvm \
llvm* \
firefox \
google* \
dotnet* \
powershell \
openjdk* \
mysql* \
php*
sudo -E apt-get update
sudo -E apt-get -y install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev patch unzip lib32gcc1 libc6-dev-i386 subversion flex node-uglify gcc-multilib g++-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils libelf-dev autoconf automake libtool autopoint device-tree-compiler libuv-dev python3.6 zlib1g-dev upx-ucl node-uglify antlr3 gperf
sudo -E apt-get -y autoremove --purge
sudo -E apt-get clean
- name: 克隆源代码
env:
REPO_URL: https://github.com/coolsnowwolf/lede
REPO_BRANCH: master
run: |
git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt
cd openwrt
sed -i '5s/#//' feeds.conf.default
- name: 更新安装源
working-directory: ./openwrt
run: |
./scripts/feeds update -a
./scripts/feeds install -a
./scripts/feeds install -a
- name: 自定义安装源
working-directory: ./openwrt
run: |
git clone https://github.com/Lienol/openwrt-package package/lienol
git clone https://github.com/kenzok8/litte package/litte
- name: 配置自定义导入Lean.config
env:
CONFIG_FILE: 'Lean.config'
run: |
[ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config
chmod +x ./Lean.sh && ./Lean.sh
cd openwrt && make defconfig
- name: 下载dl文件
working-directory: ./openwrt
run: |
make download -j$(nproc)
find dl -size -1024c -exec ls -l {} \;
find dl -size -1024c -exec rm -f {} \;
- name: 编译固件
working-directory: ./openwrt
run: |
echo -e "$(nproc) thread build."
make -j$(nproc) V=s
- name : 固件上载并完成工作
uses: actions/upload-artifact@master
with:
name: OpenWrt_Redmi_AC2100
path: openwrt/bin