Build IPK #6
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 IPK" | |
on: | |
repository_dispatch: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'luci-app-droidnet/Makefile' | |
env: | |
TZ: Asia/Jakarta | |
jobs: | |
job_check: | |
if: github.repository == ${{ github.repository }} | |
name: Check Version | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.check_version.outputs.latest_version }} | |
has_update: ${{ steps.check_version.outputs.has_update }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
ref: 'master' | |
- name: Check version | |
id: check_version | |
env: | |
url_release: https://api.github.com/repos/${{ github.repository }}/releases/latest | |
run: | | |
latest_version=$(grep -oP 'PKG_VERSION:=\K.*' Makefile | sed 's/^/v/') | |
latest_release=$(wget -qO- -t1 -T2 ${{env.url_release}} | awk -F '"' '/tag_name/{print $4}') | |
has_update=$([ "${latest_version}" != "${latest_release}" ] && echo true || echo false) | |
echo "latest_version=${latest_version}" >> $GITHUB_OUTPUT | |
echo "has_update=${has_update}" >> $GITHUB_OUTPUT | |
echo "latest_version: ${latest_version}" | |
echo "latest_release: ${latest_release}" | |
echo "has_update: ${has_update}" | |
- name: Generate new tag & release | |
if: steps.check_version.outputs.has_update == 'true' | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: luci-app-droidnet | |
tag_name: ${{steps.check_version.outputs.latest_version}} | |
job_build: | |
name: Build OpenWRT | |
needs: job_check | |
if: needs.job_check.outputs.has_update == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install packages | |
run: | | |
echo "Install packages" | |
sudo -E apt-get -qq update | |
sudo -E apt-get -qq install build-essential clang flex bison g++ gawk gcc-multilib g++-multilib gettext git libncurses5-dev libssl-dev python3-distutils rsync unzip zlib1g-dev file wget | |
sudo -E apt-get -qq autoremove --purge | |
sudo -E apt-get -qq clean | |
- name: Cache openwrt SDK | |
id: cache-sdk | |
uses: actions/cache@v3 | |
with: | |
path: sdk | |
key: openwrt-sdk-23.05-x86-64 | |
- name: Initialization environment | |
if: steps.cache-sdk.outputs.cache-hit != 'true' | |
env: | |
url_sdk: https://archive.openwrt.org/releases/23.05.2/targets/x86/64/openwrt-sdk-23.05.2-x86-64_gcc-12.3.0_musl.Linux-x86_64.tar.xz | |
run: | | |
wget ${{ env.url_sdk }} | |
file_name=$(echo ${{env.url_sdk}} | awk -F/ '{print $NF}') | |
mkdir sdk && tar -xJf $file_name -C ./sdk --strip-components=1 | |
cd sdk | |
echo "src-git base https://github.com/openwrt/openwrt.git;openwrt-23.05" > feeds.conf | |
echo "src-git-full packages https://github.com/openwrt/packages.git;openwrt-23.05" >> feeds.conf | |
echo "src-git-full luci https://git.openwrt.org/project/luci.git;openwrt-23.05" >> feeds.conf | |
echo "src-git-full routing https://git.openwrt.org/feed/routing.git;openwrt-23.05" >> feeds.conf | |
git clone -b master https://github.com/${{ github.repository }}.git package/downloads/luci-app-droidnet | |
chmod +x package/downloads/luci-app-droidnet/root/etc/init.d/droidnet package/downloads/luci-app-droidnet/root/usr/share/droidnet/monitoring | |
./scripts/feeds update -a | |
echo "CONFIG_PACKAGE_luci-app-droidnet=m" > .config | |
./scripts/feeds install -d n luci-app-droidnet | |
make download -j8 | |
- name: Configure IPK | |
run: | | |
cd sdk | |
./scripts/feeds install luci-app-droidnet | |
echo "CONFIG_ALL_NONSHARED=n" > .config | |
echo "CONFIG_ALL_KMODS=n" >> .config | |
echo "CONFIG_ALL=n" >> .config | |
echo "CONFIG_AUTOREMOVE=n" >> .config | |
echo "CONFIG_LUCI_LANG_zh_Hans=n" >> .config | |
echo "CONFIG_PACKAGE_luci-app-droidnet=m" >> .config | |
echo "CONFIG_LUCI_JSMIN=n" >> .config | |
echo "CONFIG_LUCI_CSSTIDY=n" >> .config | |
make defconfig | |
- name: Compile IPK | |
id: compile | |
run: | | |
cd sdk | |
echo "make package/luci-app-droidnet/{clean,compile} -j$(nproc)" | |
make package/luci-app-droidnet/{clean,compile} -j$(nproc) | |
mv bin/packages/x86_64/base/ ../ | |
rm .config .config.old | |
cd .. | |
echo "status=success" >> $GITHUB_OUTPUT | |
echo "FIRMWARE=$PWD" >> $GITHUB_ENV | |
- name: Upload IPK to release | |
uses: softprops/action-gh-release@v1 | |
if: steps.compile.outputs.status == 'success' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{needs.job_check.outputs.version}} | |
files: ${{ env.FIRMWARE }}/base/luci-app-*.ipk |