-
Notifications
You must be signed in to change notification settings - Fork 32
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
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -66,7 +66,7 @@ jobs: | |
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential flex bison 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 proxychains-ng 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 | ||
sudo apt-get install -y build-essential flex bison 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 proxychains-ng 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 | ||
sudo apt-get clean | ||
git config --global user.name 'GitHub Actions' && git config --global user.email '[email protected]' | ||
df -Th | ||
|
@@ -92,14 +92,14 @@ jobs: | |
cp -a openwrt/bin/targets/rockchip/*/*-r4s.manifest info/manifest.txt | ||
cp -a openwrt/bin/targets/rockchip/*/config.buildinfo info/config.buildinfo | ||
cp -a openwrt/bin/targets/rockchip/*/openwrt-sdk-*.tar.xz rom/ | ||
rename 's/^openwrt-sdk-/nanopi-r4s-openwrt-sdk-/' rom/openwrt-sdk-* | ||
rename 's/openwrt-sdk-/nanopi-r4s-openwrt-sdk-/' rom/openwrt-sdk-* | ||
cd rom && sha256sum * > ../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 | ||
cp -a openwrt/bin/targets/rockchip/*/openwrt-sdk-*.tar.xz rom/ | ||
rename 's/^openwrt-sdk-/nanopi-r5s-openwrt-sdk-/' rom/openwrt-sdk-* | ||
rename 's/openwrt-sdk-/nanopi-r5s-openwrt-sdk-/' rom/openwrt-sdk-* | ||
cd rom && sha256sum * > ../info/sha256sums.txt | ||
elif [ "${{ matrix.model }}" = "x86_64" ]; then | ||
cp -a openwrt/bin/targets/x86/*/*-ext4-combined-efi.img.gz rom/ | ||
|