From e5113d81c12289142f37d59559c204c054cb5a76 Mon Sep 17 00:00:00 2001 From: klever1988 <56048681+klever1988@users.noreply.github.com> Date: Sun, 23 Feb 2020 06:43:36 +0800 Subject: [PATCH] Add files via upload --- .github/workflows/r2s_lienol_from_lean.yml | 123 +++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 .github/workflows/r2s_lienol_from_lean.yml diff --git a/.github/workflows/r2s_lienol_from_lean.yml b/.github/workflows/r2s_lienol_from_lean.yml new file mode 100644 index 0000000..d1c3e68 --- /dev/null +++ b/.github/workflows/r2s_lienol_from_lean.yml @@ -0,0 +1,123 @@ +name: r2s Lienol版openwrt + +on: + push: + paths: + - '.github/workflows/r2s_lienol_from_lean.yml' + schedule: + - cron: '30 12 * * *' + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + + - name: Checkout + uses: actions/checkout@master + with: + ref: master + + - name: Initialization Environment + env: + DEBIAN_FRONTEND: noninteractive + run: | + sudo rm -rf /etc/apt/sources.list.d + sudo apt-get update + sudo apt-get -y install bc build-essential 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 p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint device-tree-compiler + wget -O - https://raw.githubusercontent.com/friendlyarm/build-env-on-ubuntu-bionic/master/install.sh | bash + sudo rm -rf /usr/share/dotnet /usr/local/lib/android/sdk + + - name: Install Repo + run: | + git clone https://github.com/friendlyarm/repo + sudo cp repo/repo /usr/bin/ + + - name: Init Source + run: | + mkdir friendlywrt-rk3328 + cd friendlywrt-rk3328 + repo init -u https://github.com/friendlyarm/friendlywrt_manifests -b master -m rk3328.xml --repo-url=https://github.com/friendlyarm/repo --no-clone-bundle + cp ../rk3328-19.xml .repo/manifests/rk3328.xml + repo sync -c --no-clone-bundle + rm -rf friendlywrt/ + git clone https://github.com/friendlyarm/friendlywrt + + - name: Mods + run: | + cd friendlywrt-rk3328 + . ../remove_used_config.sh + echo ' + CONFIG_OPENSSL_ENGINE_BUILTIN=y + CONFIG_OPENSSL_WITH_DTLS=y + CONFIG_OPENSSL_WITH_EC2M=y + CONFIG_OPENSSL_WITH_NPN=y + # CONFIG_PACKAGE_UnblockNeteaseMusic is not set + CONFIG_PACKAGE_ca-bundle=y + CONFIG_PACKAGE_curl=y + CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y + CONFIG_PACKAGE_ipv6helper=y + # CONFIG_PACKAGE_kmod-crypto-authenc is not set + # CONFIG_PACKAGE_kmod-cryptodev is not set + CONFIG_PACKAGE_kmod-macvlan=y + CONFIG_PACKAGE_libcap=y + CONFIG_PACKAGE_libcurl=y + # CONFIG_PACKAGE_libhttp-parser is not set + # CONFIG_PACKAGE_libnghttp2 is not set + # CONFIG_PACKAGE_libopenssl-devcrypto is not set + CONFIG_PACKAGE_libuci-lua=y + CONFIG_PACKAGE_libwebsockets-full=y + CONFIG_PACKAGE_luci-app-mwan3=y + CONFIG_PACKAGE_luci-app-netdata=y + CONFIG_PACKAGE_luci-app-syncdial=y + CONFIG_PACKAGE_luci-app-ttyd=y + # CONFIG_PACKAGE_luci-app-unblockmusic is not set + CONFIG_PACKAGE_luci-app-unblockneteasemusic-mini=y + CONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y + CONFIG_PACKAGE_luci-i18n-netdata-zh-cn=y + CONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y + CONFIG_PACKAGE_luci-theme-material=y + CONFIG_PACKAGE_luci-theme-openwrt=y + CONFIG_PACKAGE_luci-theme-rosy=y + CONFIG_PACKAGE_mwan3=y + CONFIG_PACKAGE_netdata=y + # CONFIG_PACKAGE_node is not set + CONFIG_PACKAGE_ttyd=y + # CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set + # CONFIG_PACKAGE_kmod-crypto-authenc is not set + # CONFIG_PACKAGE_kmod-cryptodev is not set' >> configs/config_rk3328 + cd friendlywrt + git config --local user.email "action@github.com" && git config --local user.name "GitHub Action" + git remote add upstream https://github.com/Lienol/openwrt && git fetch upstream + git rebase 90bb1cf9c33e73de5019686b8bd495f689e675a4^ --onto upstream/dev-lean-lede + git checkout upstream/dev-lean-lede -- feeds.conf.default + sed -i 's/option fullcone\t1/option fullcone\t0/' package/network/config/firewall/files/firewall.config + sed -i '/8.8.8.8/d' package/base-files/files/root/setup.sh + + - name: Clean Feeds + run: | + cd friendlywrt-rk3328/friendlywrt + ./scripts/feeds clean -a + + - name: Build FriendlyWrt + run: | + cd friendlywrt-rk3328 + sed -i 's/set -eu/set -u/' scripts/mk-friendlywrt.sh + ./build.sh nanopi_r2s.mk + + - name: Zip Files + run: | + gzip friendlywrt-rk3328/out/*.img + - name: Assemble Artifact + run: | + rm -rf ./artifact/ + mkdir -p ./artifact/ + mv friendlywrt-rk3328/out/*img* ./artifact/ + cp friendlywrt-rk3328/friendlywrt/.config ./artifact/ + - name: Upload Artifact + uses: actions/upload-artifact@master + with: + name: FriendlyWrt_NanoPi-R2S + path: ./artifact/