修改内核压缩方式

This commit is contained in:
juewuy
2024-01-28 20:35:49 +08:00
parent 1a621cb4a0
commit 546553f6c8

View File

@@ -77,32 +77,32 @@ jobs:
goos: linux
goarch: amd64
goamd64: v1
- name: linux-386
goos: linux
goarch: 386
- name: linux-arm64
goos: linux
goarch: arm64
- name: linux-armv5
goos: linux
goarch: arm
goarm: 5
- name: linux-armv7
goos: linux
goarch: arm
goarm: 7
- name: linux-mips-softfloat
goos: linux
goarch: mips
gomips: softfloat
- name: linux-mipsel-softfloat
goos: linux
goarch: mipsle
gomips: softfloat
- name: linux-mipsel-hardfloat
goos: linux
goarch: mipsle
gomips: hardfloat
# - name: linux-386
# goos: linux
# goarch: 386
# - name: linux-arm64
# goos: linux
# goarch: arm64
# - name: linux-armv5
# goos: linux
# goarch: arm
# goarm: 5
# - name: linux-armv7
# goos: linux
# goarch: arm
# goarm: 7
# - name: linux-mips-softfloat
# goos: linux
# goarch: mips
# gomips: softfloat
# - name: linux-mipsel-softfloat
# goos: linux
# goarch: mipsle
# gomips: softfloat
# - name: linux-mipsel-hardfloat
# goos: linux
# goarch: mipsle
# gomips: hardfloat
fail-fast: false
runs-on: ubuntu-latest
@@ -148,36 +148,19 @@ jobs:
RELEASE: ${{ github.event.inputs.tag3 }}
VERSION: ${{needs.sing-box.outputs.version}}
steps:
- name: Get upx
run: |
wget https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
wget https://github.com/upx/upx/releases/download/v3.93/upx-3.93-amd64_linux.tar.xz
tar xf upx-3.96-amd64_linux.tar.xz
tar xf upx-3.93-amd64_linux.tar.xz
- name: Download file from workspace
uses: actions/download-artifact@v4
with:
path: ./tmp
- name: Zip core by upx
- name: Zip core by tar
run: |
archs=(amd64 armv5 armv7 arm64 mips-softfloat mipsel-hardfloat mipsel-softfloat)
new_name=(amd64 armv5 armv7 armv8 mips-softfloat mipsle-hardfloat mipsle-softfloat)
for((i=0;i<7;i++));do
mv -f ./tmp/linux-${archs[i]}/sing-box ./tmp/singbox-linux-${new_name[i]}
chmod +x ./tmp/singbox-linux-${new_name[i]}
if [ "${archs[i]}" != "armv5" ];then
if [[ ${archs[i]} = mips* ]];then
./upx-3.93-amd64_linux/upx ./tmp/singbox-linux-${new_name[i]}
else
./upx-3.96-amd64_linux/upx ./tmp/singbox-linux-${new_name[i]}
fi
fi
for arch in amd64 ;do #armv5 armv7 arm64 mips-softfloat mipsel-hardfloat mipsel-softfloat
mv -f ./tmp/linux-${archs}/sing-box ./tmp/singbox-linux-${archs}
chmod +x ./tmp/singbox-linux-${archs}
tar -zcvf ./tmp/singbox-linux-${archs}.tar.gz ./tmp/singbox-linux-${archs}
done
rm -fr upx*
rm -fr ./tmp/core.tar.gz
echo ${VERSION} > ./tmp/version
- name: Create Release and Upload Release Asset
if: ${{ env.RELEASE != '0' }}
@@ -185,7 +168,7 @@ jobs:
with:
tag_name: singbox_core${{ github.event.inputs.tag3 }}
name: singbox_core${{ github.event.inputs.tag3 }}
body: "The ${{env.VERSION}} version of ${{ github.event.inputs.tag1 }} \n这是${{ github.event.inputs.tag1 }}的${{env.VERSION}}版本内核文件\nhttps://github.com/${{ github.event.inputs.tag1 }}/releases \nZip by upx\n使用了upx进行压缩\nOnly support for ShellCrash\n仅限于ShellCrash项目使用"
body: "The ${{env.VERSION}} version of ${{ github.event.inputs.tag1 }} \n这是${{ github.event.inputs.tag1 }}的${{env.VERSION}}版本内核文件\nhttps://github.com/${{ github.event.inputs.tag1 }}/releases \nOnly support for ShellCrash\n仅适配ShellCrash项目使用"
draft: false
prerelease: true
files: |