编译mipsel版cloudflared #53
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: 编译mipsel版cloudflared | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
workflow_dispatch: | |
env: | |
TZ: Asia/Shanghai | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
outputs: | |
ver: ${{ steps.getversion.outputs.ver }} | |
cver: ${{ steps.getversion.outputs.cver }} | |
steps: | |
- | |
name: 检查版本 | |
id: getversion | |
run: | | |
ver=`curl https://api.github.com/repos/cloudflare/cloudflared/releases/latest | jq -r '.tag_name'` | |
cver=`curl https://api.github.com/repos/lmq8267/cloudflared/releases/latest | jq -r '.tag_name'` | |
echo "ver=${ver}" >> $GITHUB_OUTPUT | |
echo "cver=${cver}" >> $GITHUB_OUTPUT | |
build: | |
runs-on: ubuntu-latest | |
needs: check | |
if: ${{ needs.check.outputs.ver != needs.check.outputs.cver }} | |
steps: | |
- name: 获取最新Go | |
run: | | |
latest_version=$(curl -L -k -s https://golang.org/dl/?mode=json | grep -m 1 -o '"version": "[^"]*' | sed 's/"version": "//' | tr -d 'go" ') | |
echo "go版本=$latest_version" | |
echo "gotag=$latest_version" >> $GITHUB_ENV | |
- name: 安装go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.gotag }} | |
- | |
name: 编译 | |
run: | | |
git clone https://github.com/cloudflare/cloudflared -b ${{ needs.check.outputs.ver }} ../src | |
git clone https://github.com/lmq8267/cloudflared.git /opt/st | |
cd ../src | |
sudo timedatectl set-timezone "Asia/Shanghai" | |
tar -xvf /opt/st/upx-3.95-amd64_linux.tar.xz -C /opt | |
chmod 777 /opt/upx-3.95-amd64_linux/upx | |
chmod 777 /opt/st/strip | |
sed -i "s|-ldflags='|-ldflags=' -s -w |g" ./Makefile | |
GOOS=linux GOARCH=mipsle GOMIPS=softfloat make cloudflared | |
/opt/st/strip cloudflared | |
/opt/upx-3.95-amd64_linux/upx --lzma --best cloudflared | |
echo $(md5sum cloudflared | awk '{print $1;}') >MD5.txt | |
echo "build_time=$(date '+%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV | |
- | |
name: 发布Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.c8 }} | |
tag_name: ${{ needs.check.outputs.ver }} | |
body: | | |
> ### 编译时间 :${{ env.build_time }} | |
**[官方更新说明](https://github.com/cloudflare/cloudflared/releases)** | |
files: | | |
../src/cloudflared | |
../src/MD5.txt | |
- | |
name: 删除工作流 | |
uses: GitRML/delete-workflow-runs@main | |
with: | |
token: ${{ secrets.c8 }} | |
retain_days: 2 | |
keep_minimum_runs: 0 |