Build OpenWrt Core #4
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
name: Build OpenWrt Core | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build ${{ matrix.model }} Core | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
model: | |
- armv8 | |
- nanopi-r5s | |
- x86_64 | |
- netgear_r8500 | |
tag: | |
- type: dev | |
version: openwrt-24.10 | |
steps: | |
- name: Setup variables | |
run: | | |
sudo timedatectl set-timezone 'Asia/Shanghai' | |
git config --global user.name 'actions' | |
git config --global user.email '[email protected]' | |
echo build_dir="/builder" >> "$GITHUB_ENV" | |
- name: Show system | |
run: | | |
echo -e "\n\e[1;32mCPU:\e[0m" | |
echo "$(grep 'model name' /proc/cpuinfo | head -1 | awk -F ': ' '{print $2}') ($(grep 'cpu MHz' /proc/cpuinfo | head -1 | awk -F ': ' '{print $2}')MHz) x $(grep processor /proc/cpuinfo | wc -l)" | |
echo -e "\n\e[1;32mMemory:\e[0m" | |
free -h | |
echo -e "\n\e[1;32mStorage:\e[0m" | |
df -Th / /mnt | |
echo -e "\n\e[1;32mSystem:\e[0m" | |
lsb_release -a | |
echo -e "\n\e[1;32mKernel:\e[0m" | |
uname -a | |
echo | |
- name: Free disk space | |
uses: sbwml/actions@free-disk | |
with: | |
build-mount-path: /builder | |
- name: Build System Setup | |
uses: sbwml/actions@openwrt-build-setup | |
- name: Install LLVM | |
uses: sbwml/actions@install-llvm | |
- name: Restore Cached | |
if: ${{ matrix.model != 'armv8' && matrix.model != 'nanopi-r4s' }} | |
uses: actions/cache/restore@v4 | |
with: | |
path: /builder/.ccache | |
key: ${{ matrix.tag.version }}-${{ matrix.model }} | |
- name: Restore Cached (releases) | |
if: ${{ matrix.model == 'armv8' || matrix.model == 'nanopi-r4s' }} | |
continue-on-error: true | |
working-directory: /builder | |
run: | | |
wget -q https://github.com/${{ github.repository }}/releases/download/ccache/${{ matrix.model }}.tar.00 || true | |
wget -q https://github.com/${{ github.repository }}/releases/download/ccache/${{ matrix.model }}.tar.01 || true | |
cat ${{ matrix.model }}.tar.* | tar -xf - || true | |
rm -rf ${{ matrix.model }}.tar.* || true | |
cache_size=$(du -sb .ccache | awk '{print $1}') | |
cache_size_mb=$(echo "scale=0; ${cache_size} / (1024 * 1024)" | bc) | |
echo "Cache Size: ~${cache_size_mb} MB (${cache_size} B)" | |
echo "Cache restored successfully" | |
echo "Cache restored from key: ${{ matrix.model }}" | |
- name: Compile OpenWrt | |
id: compile | |
continue-on-error: true | |
working-directory: /builder | |
env: | |
git_password: ${{ secrets.ftp_password }} | |
run: | | |
[ "${{ matrix.model }}" != "netgear_r8500" ] && export KERNEL_CLANG_LTO=y ENABLE_DPDK=y | |
export BUILD_FAST=y ENABLE_CCACHE=y ENABLE_OTA=y ENABLE_BPF=y ENABLE_LTO=y ENABLE_LRNG=y USE_GCC15=y ENABLE_MOLD=y MINIMAL_BUILD=y | |
bash <(curl -sS ${{ secrets.script_url_general }}) ${{ matrix.tag.type }} ${{ matrix.model }} | |
- name: Extensive logs after a failed compilation | |
if: steps.compile.outcome == 'failure' | |
working-directory: /builder | |
run: | | |
cd openwrt | |
make V=s IGNORE_ERRORS="n m" | |
- name: Prepare files | |
working-directory: /builder | |
run: | | |
base_name=$(basename ${{ env.build_dir }}/openwrt/*-*.tar.gz) | |
kmod_name=$(echo $base_name | sed 's/~/-/g') | |
mv ${{ env.build_dir }}/openwrt/*-*.tar.gz ${{ env.build_dir }}/openwrt/$kmod_name | |
- name: Release kernel modules | |
uses: ncipollo/[email protected] | |
with: | |
name: kmod-snapshot | |
allowUpdates: true | |
prerelease: true | |
tag: snapshot | |
commit: main | |
replacesArtifacts: true | |
token: ${{ secrets.workflow_token }} | |
artifacts: | | |
${{ env.build_dir }}/openwrt/*-*.tar.gz | |
- name: Sync kernel modules | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.workflow_token }} | |
repository: sbwml/openwrt_core | |
event-type: sync |