This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
#=============================================== | ||
# Description: Build OpenWrt | ||
# File name: build-openwrt.yml | ||
# Lisence: MIT | ||
# Author: P3TERX | ||
# https://github.com/P3TERX | ||
#=============================================== | ||
|
||
name: RaspberryPi3 OpenWrt | ||
|
||
on: | ||
repository_dispatch: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '10 15 * * *' | ||
|
||
env: | ||
REPO_URL: https://github.com/coolsnowwolf/lede | ||
REPO_BRANCH: master | ||
CONFIG_FILE: configs/rpi3.config | ||
EXTRA_CONFIG: configs/extra.config | ||
DIY_SCRIPT: diy-script.sh | ||
UPLOAD_BIN_DIR: false | ||
UPLOAD_FIRMWARE: false | ||
UPLOAD_RELEASE: true | ||
FILE_NAME: RaspberryPi3 | ||
TZ: Asia/Shanghai | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Initialization environment | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
docker rmi $(docker images -q) | ||
sudo rm -rf /etc/apt/sources.list.d/* /usr/share/dotnet /etc/mysql /etc/php /usr/local/lib/android /opt/ghc | ||
sudo -E apt-get -y purge azure-cli ghc* zulu* hhvm llvm* firefox google* dotnet* powershell openjdk* adoptopenjdk* mysql* php* mongodb* dotnet* moby* snapd* || true | ||
sudo -E apt-get -qq update | ||
sudo -E apt-get -qq install $(curl -fsSL https://is.gd/depends_ubuntu_2204) | ||
sudo -E apt-get -qq autoremove --purge | ||
sudo -E apt-get -qq clean | ||
sudo timedatectl set-timezone "$TZ" | ||
sudo mkdir -p /workdir | ||
sudo chown $USER:$GROUPS /workdir | ||
df -Th | ||
- name: Clone source code | ||
working-directory: /workdir | ||
run: | | ||
df -hT $PWD | ||
git clone $REPO_URL -b $REPO_BRANCH openwrt | ||
ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt | ||
cd openwrt | ||
useVersionInfo=$(git show -s --date=short --format="Author: %an<br/>date: %cd<br/>commit: %s<br/>commit hash: %H") | ||
echo "useVersionInfo=$useVersionInfo" >> $GITHUB_ENV | ||
- name: Update feeds | ||
run: cd openwrt && ./scripts/feeds update -a | ||
|
||
- name: Install feeds | ||
run: cd openwrt && ./scripts/feeds install -a | ||
|
||
- name: Load custom configuration | ||
run: | | ||
[ -e files ] && mv files openwrt/files | ||
[ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config | ||
cat $EXTRA_CONFIG >> openwrt/.config | ||
chmod +x $DIY_SCRIPT | ||
cd openwrt | ||
$GITHUB_WORKSPACE/$DIY_SCRIPT | ||
- name: Download package | ||
id: package | ||
run: | | ||
cd openwrt | ||
make defconfig | ||
make download -j8 | ||
find dl -size -1024c -exec ls -l {} \; | ||
find dl -size -1024c -exec rm -f {} \; | ||
- name: Compile the firmware | ||
id: compile | ||
run: | | ||
cd openwrt | ||
echo -e "$(nproc) thread compile" | ||
make -j$(nproc) || make -j1 || make -j1 V=s | ||
echo "::set-output name=status::success" | ||
grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME | ||
[ -s DEVICE_NAME ] && echo "DEVICE_NAME=_$(cat DEVICE_NAME)" >> $GITHUB_ENV | ||
echo "DATE=$(date +"%Y-%m-%d %H:%M:%S")" >> $GITHUB_ENV | ||
echo "FILE_DATE=_$(date +"%Y%m%d%H%M")" >> $GITHUB_ENV | ||
- name: Check space usage | ||
if: (!cancelled()) | ||
run: df -Th | ||
|
||
- name: Upload bin directory | ||
uses: actions/upload-artifact@main | ||
if: steps.compile.outputs.status == 'success' && env.UPLOAD_BIN_DIR == 'true' | ||
with: | ||
name: OpenWrt_bin${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} | ||
path: openwrt/bin | ||
|
||
- name: Organize files | ||
id: organize | ||
if: steps.compile.outputs.status == 'success' && !cancelled() | ||
run: | | ||
cp openwrt/.config build.config | ||
mkdir -p Packages | ||
mv -f openwrt/bin/packages/*/*/*.ipk Packages | ||
mv -f openwrt/bin/targets/*/*/packages/*.ipk Packages | ||
tar -zcvf Packages.tar.gz Packages | ||
mv *.config *.tar.gz openwrt/bin/targets/*/* | ||
cd openwrt/bin/targets/*/* | ||
rm -rf packages feeds.buildinfo sha256sums version.buildinfo | ||
echo "FIRMWARE=$PWD" >> $GITHUB_ENV | ||
echo "::set-output name=status::success" | ||
- name: Upload firmware directory | ||
uses: actions/upload-artifact@main | ||
if: steps.organize.outputs.status == 'success' && env.UPLOAD_FIRMWARE == 'true' && !cancelled() | ||
with: | ||
name: OpenWrt_firmware${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} | ||
path: ${{ env.FIRMWARE }} | ||
|
||
- name: Upload firmware to release | ||
uses: ncipollo/release-action@v1 | ||
if: steps.organize.outputs.status == 'success' && env.UPLOAD_RELEASE == 'true' && !cancelled() | ||
with: | ||
name: R${{ env.DATE }} for ${{ env.FILE_NAME }} | ||
artifacts: ${{ env.FIRMWARE }}/* | ||
allowUpdates: true | ||
tag: ${{ env.FILE_NAME }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
body: | | ||
**This is OpenWrt firmware for RaspberryPi3B/3B+** | ||
* 这是 RaspberryPi3B/3B+ 使用的 OpenWrt 固件 | ||
默认 IP:192.168.1.1 默认密码:password | ||
当前使用版本:【编译前的最后一次[➦主源码](https://github.com/coolsnowwolf/lede)更新记录】 | ||
${{ env.useVersionInfo }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Target Config | ||
CONFIG_TARGET_bcm27xx=y | ||
CONFIG_TARGET_bcm27xx_bcm2711=y | ||
CONFIG_TARGET_bcm27xx_bcm2711_DEVICE_rpi-3=y | ||
|
||
# Set firmware size | ||
CONFIG_TARGET_KERNEL_PARTSIZE=32 | ||
CONFIG_TARGET_ROOTFS_PARTSIZE=900 | ||
|
||
# Firmware Type | ||
CONFIG_TARGET_ROOTFS_TARGZ=y | ||
CONFIG_TARGET_ROOTFS_EXT4FS=y | ||
CONFIG_TARGET_ROOTFS_SQUASHFS=y |