forked from sbwml/r4s_build_script
-
Notifications
You must be signed in to change notification settings - Fork 24
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
12 changed files
with
542 additions
and
86 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
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,150 @@ | ||
name: Build x86_64 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
name: Build ${{ matrix.model }}-${{ matrix.tag.version }} | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
shell: bash | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
model: | ||
- x86_64 | ||
tag: | ||
- type: rc2 | ||
version: openwrt-23.05 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
with: | ||
ref: x86_64 | ||
|
||
- name: Set time zone | ||
run: sudo timedatectl set-timezone 'Asia/Shanghai' | ||
|
||
- name: Show system | ||
run: | | ||
lscpu | ||
free -h | ||
df -Th | ||
uname -a | ||
- name: Set release env | ||
run: | | ||
sudo mkdir -p /builder | ||
sudo chown -R runner.runner /builder | ||
echo WORKDIR="/builder" >> "$GITHUB_ENV" | ||
- name: Free disk space | ||
run: | | ||
sudo rm -rf /etc/apt/sources.list.d | ||
sudo swapoff -a | ||
sudo rm -f /swapfile /mnt/swapfile | ||
sudo docker image prune -a -f | ||
sudo systemctl stop docker | ||
sudo snap set system refresh.retain=2 | ||
sudo apt-get -y purge firefox clang* ghc* google* llvm* mono* mongo* mysql* php* | ||
sudo apt-get -y autoremove --purge | ||
sudo apt-get clean | ||
sudo rm -rf /etc/mysql /etc/php /usr/lib/jvm /usr/libexec/docker /usr/local /usr/src/* /var/lib/docker /var/lib/gems /var/lib/mysql /var/lib/snapd /etc/skel /opt/{microsoft,az,hostedtoolcache,cni,mssql-tools,pipx} /usr/share/{az*,dotnet,swift,miniconda,gradle*,java,kotlinc,ri,sbt} /root/{.sbt,.local,.npm} | ||
sudo sed -i '/NVM_DIR/d;/skel/d' /root/{.bashrc,.profile} | ||
rm -rf ~/{.cargo,.dotnet,.rustup} | ||
df -Th | ||
- name: Build System Setup | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential flex bison cmake g++ gawk gcc-multilib g++-multilib gettext git libfuse-dev libncurses5-dev libssl-dev python3 python3-pip python3-ply python3-distutils python3-pyelftools rsync unzip zlib1g-dev file wget subversion patch upx-ucl autoconf automake curl asciidoc binutils bzip2 lib32gcc-s1 libc6-dev-i386 uglifyjs msmtp texinfo libreadline-dev libglib2.0-dev xmlto libelf-dev libtool autopoint antlr3 gperf ccache swig coreutils haveged scons libpython3-dev rename qemu-utils | ||
sudo apt-get clean | ||
git config --global user.name 'GitHub Actions' && git config --global user.email 'noreply@github.com' | ||
df -Th | ||
- name: Install LLVM | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
mkdir /opt/clang | ||
curl -LO https://github.com/sbwml/redhat-llvm-project/releases/download/18.1.8/clang-18.1.8-x86_64-redhat-linux.tar.xz --progress-bar | ||
sudo tar --strip-components=1 -C /opt/clang -xf clang-18.1.8-x86_64-redhat-linux.tar.xz | ||
rm -rf clang-18.1.8-x86_64-redhat-linux.tar.xz | ||
clang --version | ||
- name: Compile OpenWrt | ||
working-directory: /builder | ||
id: compile | ||
continue-on-error: true | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
export GITHUB_REPO=${{ github.repository }} | ||
export KERNEL_CLANG_LTO=y BUILD_FAST=y ENABLE_UHTTPD=y ENABLE_LTO=y ENABLE_LRNG=y ENABLE_BPF=y USE_GCC14=y USE_MOLD=y | ||
bash <(curl -sS https://raw.githubusercontent.com/${{ github.repository }}/x86_64/openwrt/build.sh) ${{ matrix.tag.type }} ${{ matrix.model }} | ||
cd openwrt | ||
tags=$(git describe --abbrev=0 --tags) | ||
echo "latest_release=$tags" >>$GITHUB_ENV | ||
- name: Extensive logs after a failed compilation | ||
working-directory: /builder | ||
if: steps.compile.outcome == 'failure' | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
cd openwrt | ||
make V=s | ||
- name: Prepare Firmware Files | ||
working-directory: /builder | ||
run: | | ||
mkdir -p rom info | ||
if [ "${{ matrix.model }}" = "nanopi-r4s" ]; then | ||
cp -a openwrt/bin/targets/rockchip/*/*.img.gz rom/ | ||
cp -a openwrt/bin/targets/rockchip/*/*-r4s.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/rockchip/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "nanopi-r5s" ]; then | ||
cp -a openwrt/bin/targets/rockchip/*/*.img.gz rom/ | ||
cp -a openwrt/bin/targets/rockchip/*/*.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/rockchip/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "x86_64" ]; then | ||
cp -a openwrt/bin/targets/x86/*/*-ext4-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/x86/*/*-squashfs-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/x86/*/*-generic-rootfs.tar.gz rom/ | ||
cp -a openwrt/bin/targets/x86/*/*-x86-64-generic.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/x86/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "armv8" ]; then | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-initramfs-kernel.bin rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-kernel.bin rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-ext4-combined.img.gz rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-squashfs-combined.img.gz rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-rootfs.tar.gz rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/armsr/armv8*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum * > ../info/sha256sums.txt | ||
fi | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.model }}-${{ matrix.tag.version }} | ||
path: ${{ env.WORKDIR }}/rom/* | ||
|
||
- name: Create release | ||
continue-on-error: true | ||
uses: sbwml/release-action@main | ||
with: | ||
name: OpenWrt-${{ env.latest_release }} | ||
allowUpdates: true | ||
prerelease: true | ||
tag: ${{ env.latest_release }} | ||
commit: x86_64 | ||
replacesArtifacts: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
artifacts: ${{ env.WORKDIR }}/rom/* |
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,180 @@ | ||
name: Build sync releases | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'tags/**' | ||
|
||
jobs: | ||
build: | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
name: Build ${{ matrix.model }}-${{ matrix.tag.version }} | ||
runs-on: ubuntu-24.04 | ||
defaults: | ||
run: | ||
shell: bash | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
model: | ||
- armv8 | ||
- nanopi-r4s | ||
- nanopi-r5s | ||
- x86_64 | ||
tag: | ||
- type: rc2 | ||
version: openwrt-23.05 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Set time zone | ||
run: sudo timedatectl set-timezone 'Asia/Shanghai' | ||
|
||
- name: Show system | ||
run: | | ||
lscpu | ||
free -h | ||
df -Th | ||
uname -a | ||
- name: Set release env | ||
run: | | ||
sudo mkdir -p /builder | ||
sudo chown -R runner:runner /builder | ||
echo WORKDIR="/builder" >> "$GITHUB_ENV" | ||
- name: Free disk space | ||
run: | | ||
sudo swapoff -a | ||
sudo rm -f /swapfile /mnt/swapfile | ||
sudo docker image prune -a -f | ||
sudo systemctl stop docker | ||
sudo snap set system refresh.retain=2 | ||
sudo apt-get -y purge firefox clang* gcc-12 gcc-14 ghc* google* llvm* mono* mongo* mysql* php* | ||
sudo apt-get -y autoremove --purge | ||
sudo apt-get clean | ||
sudo rm -rf /etc/mysql /etc/php /usr/lib/{jvm,llvm} /usr/libexec/docker /usr/local /usr/src/* /var/lib/docker /var/lib/gems /var/lib/mysql /var/lib/snapd /etc/skel /opt/{microsoft,az,hostedtoolcache,cni,mssql-tools,pipx} /usr/share/{az*,dotnet,swift,miniconda,gradle*,java,kotlinc,ri,sbt} /root/{.sbt,.local,.npm} /usr/libexec/gcc/x86_64-linux-gnu/14 /usr/lib/x86_64-linux-gnu/{*clang*,*LLVM*} /home/linuxbrew | ||
sudo sed -i '/NVM_DIR/d;/skel/d' /root/{.bashrc,.profile} | ||
rm -rf ~/{.cargo,.dotnet,.rustup} | ||
df -Th | ||
- name: Create Swap | ||
run: | | ||
sudo dd if=/dev/zero of=/mnt/swapfile bs=1M count=8192 | ||
sudo chmod 600 /mnt/swapfile | ||
sudo mkswap /mnt/swapfile | ||
sudo swapon /mnt/swapfile | ||
free -h | grep -i swap | ||
- name: Build System Setup | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential flex bison cmake g++ gawk gcc-multilib g++-multilib gettext git libfuse-dev libncurses5-dev libssl-dev python3 python3-pip python3-ply python3-pyelftools rsync unzip zlib1g-dev file wget subversion patch upx-ucl autoconf automake curl asciidoc binutils bzip2 lib32gcc-s1 libc6-dev-i386 uglifyjs msmtp texinfo libreadline-dev libglib2.0-dev xmlto libelf-dev libtool autopoint antlr3 gperf ccache swig coreutils haveged scons libpython3-dev rename qemu-utils | ||
sudo apt-get clean | ||
git config --global user.name 'GitHub Actions' && git config --global user.email 'noreply@github.com' | ||
- name: Create VG & LV | ||
run: | | ||
mnt_size=$(df -h /mnt | tail -1 | awk '{print $4}' | sed 's/[[:alpha:]]//g' | sed 's/\..*//') | ||
root_size=$(expr $(df -h / | tail -1 | awk '{print $4}' | sed 's/[[:alpha:]]//g' | sed 's/\..*//') - 2) | ||
sudo truncate -s "$mnt_size"G /mnt/mnt.img | ||
sudo truncate -s "$root_size"G /root.img | ||
sudo losetup /dev/loop6 /mnt/mnt.img | ||
sudo losetup /dev/loop7 /root.img | ||
sudo pvcreate /dev/loop6 | ||
sudo pvcreate /dev/loop7 | ||
sudo vgcreate github /dev/loop6 /dev/loop7 | ||
sudo lvcreate -n runner -l 100%FREE github | ||
sudo mkfs.xfs /dev/github/runner | ||
- name: Mount LV | ||
run: | | ||
sudo mkdir -p /builder | ||
sudo mount /dev/github/runner /builder | ||
sudo chown -R runner:runner /builder | ||
df -Th | ||
- name: Install LLVM | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
mkdir /opt/clang | ||
curl -LO https://github.com/sbwml/redhat-llvm-project/releases/download/18.1.8/clang-18.1.8-x86_64-redhat-linux.tar.xz --progress-bar | ||
sudo tar --strip-components=1 -C /opt/clang -xf clang-18.1.8-x86_64-redhat-linux.tar.xz | ||
rm -rf clang-18.1.8-x86_64-redhat-linux.tar.xz | ||
clang --version | ||
- name: Compile OpenWrt | ||
working-directory: /builder | ||
id: compile | ||
continue-on-error: true | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
export GITHUB_REPO=${{ github.repository }} | ||
export KERNEL_CLANG_LTO=y BUILD_FAST=y ENABLE_UHTTPD=y ENABLE_LTO=y ENABLE_LRNG=y ENABLE_BPF=y USE_GCC14=y ENABLE_DPDK=y ENABLE_MOLD=y | ||
bash <(curl -sS https://raw.githubusercontent.com/${{ github.repository }}/master/openwrt/build.sh) ${{ matrix.tag.type }} ${{ matrix.model }} | ||
cd openwrt | ||
tags=$(git describe --abbrev=0 --tags) | ||
kernel=$(curl -s "https://raw.githubusercontent.com/${{ github.repository }}/master/tags/kernel-6.6" | awk -F"LINUX_KERNEL_HASH-| =" '/LINUX_KERNEL_HASH/{print $2}') | ||
echo "latest_release=$tags-k$kernel" >>$GITHUB_ENV | ||
- name: Extensive logs after a failed compilation | ||
working-directory: /builder | ||
if: steps.compile.outcome == 'failure' | ||
run: | | ||
export PATH="/opt/clang/bin:$PATH" | ||
cd openwrt | ||
make V=s | ||
- name: Prepare Firmware Files | ||
working-directory: /builder | ||
run: | | ||
mkdir -p rom info | ||
if [ "${{ matrix.model }}" = "nanopi-r4s" ]; then | ||
cp -a openwrt/bin/targets/rockchip/*/*.img.gz rom/ | ||
cp -a openwrt/bin/targets/rockchip/*/*-r4s.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/rockchip/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "nanopi-r5s" ]; then | ||
cp -a openwrt/bin/targets/rockchip/*/*.img.gz rom/ | ||
cp -a openwrt/bin/targets/rockchip/*/*.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/rockchip/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "x86_64" ]; then | ||
cp -a openwrt/bin/targets/x86/*/*-ext4-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/x86/*/*-squashfs-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/x86/*/*-x86-64-generic.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/x86/*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum *gz > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "armv8" ]; then | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-ext4-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*-generic-squashfs-combined-efi.img.gz rom/ | ||
cp -a openwrt/bin/targets/armsr/armv8*/*.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/armsr/armv8*/config.buildinfo info/config.buildinfo | ||
cd rom && sha256sum * > ../info/sha256sums.txt | ||
fi | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.model }}-${{ matrix.tag.version }} | ||
path: ${{ env.WORKDIR }}/rom/*.gz | ||
|
||
- name: Create release | ||
continue-on-error: true | ||
uses: sbwml/release-action@main | ||
with: | ||
name: OpenWrt-${{ env.latest_release }} | ||
allowUpdates: true | ||
tag: ${{ env.latest_release }} | ||
body: OpenWrt 23.05 with Kernel 6.6 Enhanced | ||
commit: master | ||
replacesArtifacts: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
artifacts: ${{ env.WORKDIR }}/rom/* |
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,31 @@ | ||
name: Sync Fork | ||
|
||
on: | ||
schedule: | ||
- cron: '0 23 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
if: github.repository_owner == 'pmkol' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: 'master' | ||
fetch-depth: 0 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config --global user.name 'GitHub Actions' | ||
git config --global user.email 'actions@github.com' | ||
- name: Merge upstream changes | ||
run: | | ||
git remote add upstream https://github.com/sbwml/r4s_build_script.git | ||
git fetch upstream | ||
git merge upstream/master --allow-unrelated-histories --no-edit || exit 1 | ||
- name: Push changes | ||
run: git push |
Oops, something went wrong.