X-OpenWrt/.github/workflows/AutoBuild-xiaomi_redmi-rout...

216 lines
7.4 KiB
YAML
Raw Normal View History

2021-07-07 07:32:11 +00:00
###########################################################
# Description: Compile OpenWrt by GitHub Actions #
# Based on: https://github.com/P3TERX/Actions-OpenWrt #
# Author: Hyy2001X #
###########################################################
2021-11-14 07:49:49 +00:00
name: Redmi AC2100
2021-07-07 07:32:11 +00:00
2022-05-06 08:46:16 +00:00
### 以下内容请保持不变 ( 请修改下方的 [环境变量设置] )
2021-07-07 07:32:11 +00:00
on:
repository_dispatch:
workflow_dispatch:
inputs:
Tempoary_IP:
description: '固件 IP 地址 [可选]'
2021-07-07 07:32:11 +00:00
default: ''
Tempoary_CONFIG:
description: '配置文件 [可选]'
default: ''
Tempoary_FLAG:
2022-05-06 08:46:16 +00:00
description: '固件标签 [可选]'
default: ''
2022-05-06 08:46:16 +00:00
### 控制部分结束 ( 以上内容请保持不变 )
2021-07-07 07:32:11 +00:00
#push:
# branches:
# - master
#schedule:
# - cron: 0 8 * * 5
#watch:
# types: [started]
### 环境变量设置
env:
# 编译时调用的 [.config] 文件名称
CONFIG_FILE: xiaomi_redmi-router-ac2100
2021-07-07 07:32:11 +00:00
# 源码仓库:分支
DEFAULT_SOURCE: coolsnowwolf/lede:master
# 上传固件到 Github Releases
UPLOAD_RELEASES: true
# 上传固件到 Github Artifacts
UPLOAD_ARTIFACTS: false
# 上传 bin 文件夹到 Github Artifacts
UPLOAD_BIN_ARTIFACTS: false
# 删除无用文件以增加编译空间
2021-07-07 07:32:11 +00:00
DELETE_USELESS_FILES: true
# 删除早期的 workflow 任务
2022-05-26 12:33:42 +00:00
DELETE_OLD_WORKFLOW: false
### 结束
2021-07-07 07:32:11 +00:00
jobs:
Compile:
2021-07-07 07:32:11 +00:00
runs-on: ubuntu-latest
2022-05-03 13:43:40 +00:00
permissions:
issues: write
pull-requests: write
contents: write
2021-07-07 07:32:11 +00:00
steps:
- name: Maximize Build Space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 5120
swap-size-mb: 512
remove-dotnet: 'true'
remove-android: 'true'
2021-07-07 07:32:11 +00:00
- name: Checkout
uses: actions/checkout@main
- name: Initialization Variables
2021-07-07 07:32:11 +00:00
run: |
echo "Free space:"
df -h
if [ -n "${{ github.event.inputs.Tempoary_CONFIG }}" ]
then
if [ -f "$GITHUB_WORKSPACE/Configs/${{ github.event.inputs.Tempoary_CONFIG }}" ]
then
CONFIG_FILE=${{ github.event.inputs.Tempoary_CONFIG }}
else
CONFIG_FILE=${{ env.CONFIG_FILE }}
fi
else
CONFIG_FILE=${{ env.CONFIG_FILE }}
fi
if [ ! -f "$GITHUB_WORKSPACE/Configs/$CONFIG_FILE" ]
then
echo "CONFIG_FILE: [/Config/$CONFIG_FILE] is not detected !"
2021-07-07 07:32:11 +00:00
exit 1
else
echo "CONFIG_FILE: [/Config/$CONFIG_FILE]"
echo "CONFIG_FILE=$CONFIG_FILE" >> $GITHUB_ENV
fi
if [ -n "${{ github.event.inputs.Tempoary_IP }}" ]
then
echo "IP: [${{ github.event.inputs.Tempoary_IP }}]"
echo "Tempoary_IP=${{ github.event.inputs.Tempoary_IP }}" >> $GITHUB_ENV
fi
if [ -n "${{ github.event.inputs.Tempoary_FLAG }}" ]
then
echo "FLAG: [${{ github.event.inputs.Tempoary_FLAG }}]"
echo "Tempoary_FLAG=${{ github.event.inputs.Tempoary_FLAG }}" >> $GITHUB_ENV
else
echo "env Tempoary_FLAG is not detected !"
fi
REPO_URL="https://github.com/$(echo ${{ env.DEFAULT_SOURCE }} | cut -d \: -f 1)"
REPO_BRANCH=$(echo ${{ env.DEFAULT_SOURCE }} | cut -d \: -f 2)
2021-07-07 07:32:11 +00:00
echo "REPO_URL=$REPO_URL" >> $GITHUB_ENV
echo "REPO_BRANCH=$REPO_BRANCH" >> $GITHUB_ENV
echo "Compile_Date=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
echo "Display_Date=$(date +%Y/%m/%d)" >> $GITHUB_ENV
2021-07-07 07:32:11 +00:00
- name: Initialization Environment
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo -E apt-get update
2022-08-21 02:11:34 +00:00
sudo -E apt-get -y install busybox build-essential cmake asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-multilib g++-multilib p7zip p7zip-full msmtp libssl-dev texinfo libreadline-dev libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint ccache curl wget vim nano python2.7 python3 python3-pip python3-ply haveged lrzsz device-tree-compiler scons antlr3 gperf intltool mkisofs rsync
2021-07-07 07:32:11 +00:00
sudo timedatectl set-timezone "Asia/Shanghai"
sudo mkdir -p /workdir
sudo chown $USER:$GROUPS /workdir
if [ "${{ env.DELETE_USELESS_FILES }}" == true ]
then
2021-07-07 07:32:11 +00:00
docker rmi $(docker images -q)
sudo rm -rf /usr/share/dotnet /etc/mysql /etc/php
sudo -E apt-get -y autoremove --purge
sudo -E apt-get clean
fi
- name: Clone Openwrt Source Code
run: |
git clone -b $REPO_BRANCH $REPO_URL openwrt
ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt
cd openwrt
./scripts/feeds update -a
./scripts/feeds install -a
2021-07-07 07:32:11 +00:00
- name: Run AutoBuild_DiyScript.sh
run: |
chmod +x Scripts/AutoBuild_*.sh
cp $GITHUB_WORKSPACE/Configs/$CONFIG_FILE openwrt/.config
2021-07-07 07:32:11 +00:00
cd openwrt
2021-11-21 14:02:55 +00:00
make defconfig
2021-07-07 07:32:11 +00:00
source $GITHUB_WORKSPACE/Scripts/AutoBuild_DiyScript.sh
source $GITHUB_WORKSPACE/Scripts/AutoBuild_Function.sh
2021-11-21 14:02:55 +00:00
Firmware_Diy_Before
rm .config && cp $GITHUB_WORKSPACE/Configs/$CONFIG_FILE .config
Firmware_Diy_Main
Firmware_Diy
2021-07-07 07:32:11 +00:00
- name: Compile
run: |
cd openwrt
2021-11-21 14:02:55 +00:00
source $GITHUB_WORKSPACE/Scripts/AutoBuild_Function.sh
Firmware_Diy_Other
./scripts/feeds install -a > /dev/null 2>&1
2021-07-07 07:32:11 +00:00
make defconfig
2022-01-19 09:01:08 +00:00
make download -j$(nproc) V=s
2021-07-07 07:32:11 +00:00
make -j$(nproc) || make -j1 V=s
2021-11-21 14:02:55 +00:00
[ $? == 0 ] && echo "Result=true" >> $GITHUB_ENV || echo "Result=false" >> $GITHUB_ENV
2021-07-07 07:32:11 +00:00
- name: Process Firmware
if: env.Result == 'true' && !cancelled()
2021-07-07 07:32:11 +00:00
run: |
cd openwrt
2021-11-21 14:02:55 +00:00
source $GITHUB_WORKSPACE/Scripts/AutoBuild_Function.sh
Firmware_Diy_End
2021-07-07 07:32:11 +00:00
- name: Upload Firmware to Artifacts
uses: actions/upload-artifact@main
if: env.UPLOAD_ARTIFACTS == 'true' && env.Result == 'true' && !cancelled()
2021-07-07 07:32:11 +00:00
with:
name: ${{ env.CONFIG_FILE }}_firmware_${{ env.Compile_Date }}
2021-07-07 07:32:11 +00:00
path: openwrt/bin/Firmware
- name: Upload bin to Artifacts
uses: actions/upload-artifact@main
if: env.UPLOAD_BIN_ARTIFACTS == 'true' && env.Result == 'true' && !cancelled()
2021-07-07 07:32:11 +00:00
with:
name: ${{ env.CONFIG_FILE }}_bin_${{ env.Compile_Date }}
2021-07-07 07:32:11 +00:00
path: openwrt/bin
- name: Upload Firmware to Github Release
uses: svenstaro/upload-release-action@v2
if: env.UPLOAD_RELEASES == 'true' && env.Result == 'true' && !cancelled()
2021-07-07 07:32:11 +00:00
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: openwrt/bin/Firmware/*
2021-08-10 06:10:03 +00:00
file_glob: true
tag: AutoUpdate
overwrite: true
- name: Download Github Release API
if: env.UPLOAD_RELEASES == 'true' && env.Result == 'true' && !cancelled()
run: |
wget https://api.github.com/repos/${{github.repository}}/releases/tags/AutoUpdate -O API
2021-08-10 06:10:03 +00:00
- name: Upload API to Github Release
if: env.UPLOAD_RELEASES == 'true' && env.Result == 'true' && !cancelled()
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./API
2021-08-10 06:10:03 +00:00
file_glob: true
tag: AutoUpdate
overwrite: true
2021-07-07 07:32:11 +00:00
- name: Delete old Workflow Runs
uses: GitRML/delete-workflow-runs@main
if: env.DELETE_OLD_WORKFLOW == 'true' && !cancelled()
with:
retain_days: 1
keep_minimum_runs: 3