clash/.github/workflows/prerelease.yml

193 lines
6.4 KiB
YAML
Raw Normal View History

2022-05-01 17:14:30 +00:00
name: Prerelease
2022-05-01 16:59:41 +00:00
on:
2022-11-26 12:11:43 +00:00
workflow_dispatch:
2022-05-01 16:59:41 +00:00
push:
2023-01-20 09:13:32 +00:00
paths:
- '!README.md'
- '!docs/**'
2022-05-01 16:59:41 +00:00
branches:
2022-05-01 17:14:30 +00:00
- Alpha
2022-05-01 16:59:41 +00:00
- Beta
2023-01-15 13:51:33 +00:00
pull_request_target:
2022-05-01 16:59:41 +00:00
branches:
2022-05-01 17:14:30 +00:00
- Alpha
2022-05-01 16:59:41 +00:00
- Beta
jobs:
2023-01-16 08:44:31 +00:00
Build:
2023-01-15 13:51:33 +00:00
permissions: write-all
2023-01-15 07:04:27 +00:00
runs-on: ubuntu-latest
2023-01-15 13:51:33 +00:00
strategy:
fail-fast: false
matrix:
job:
2023-01-16 08:44:31 +00:00
- { type: "WithoutCGO", target: "linux-amd64 linux-amd64-compatible", id: "1" }
- { type: "WithoutCGO", target: "linux-armv5 linux-armv6 linux-armv7", id: "2" }
- { type: "WithoutCGO", target: "linux-arm64 linux-mips64 linux-mips64le", id: "3" }
- { type: "WithoutCGO", target: "linux-mips-softfloat linux-mips-hardfloat linux-mipsle-softfloat linux-mipsle-hardfloat", id: "4" }
- { type: "WithoutCGO", target: "freebsd-386 freebsd-amd64 freebsd-arm64", id: "5" }
- { type: "WithoutCGO", target: "windows-amd64-compatible windows-amd64 windows-386", id: "6" }
- { type: "WithoutCGO", target: "windows-arm64 windows-arm32v7", id: "7" }
- { type: "WithoutCGO", target: "darwin-amd64 darwin-arm64 android-arm64", id: "8" }
- { type: "WithCGO", target: "windows/*", id: "1" }
- { type: "WithCGO", target: "linux/386,linux/amd64", id: "2" }
- { type: "WithCGO", target: "linux/arm64,linux/riscv64", id: "3" }
- { type: "WithCGO", target: "linux/arm,linux/arm-6,linux/arm-7", id: "4" }
- { type: "WithCGO", target: "linux/mips,linux/mipsle", id: "5" }
- { type: "WithCGO", target: "linux/mips64,linux/mips64le", id: "6" }
- { type: "WithCGO", target: "darwin-10.16/*", id: "7" }
- { type: "WithCGO", target: "android", id: "8" }
2023-01-15 07:04:27 +00:00
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
2023-01-15 13:51:33 +00:00
- name: Set variables
run: echo "VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell: bash
- name: Set variables
2023-01-15 07:04:27 +00:00
if: ${{github.ref_name=='Alpha'}}
2023-01-15 13:51:33 +00:00
run: echo "VERSION=alpha-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell: bash
2023-01-15 07:04:27 +00:00
- name: Set variables
if: ${{github.ref_name=='Beta'}}
2023-01-15 13:51:33 +00:00
run: echo "VERSION=beta-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell: bash
- name: Set variables
if: ${{github.ref_name==''}}
run: echo "VERSION=$(git describe --tags)" >> $GITHUB_ENV
2023-01-15 07:04:27 +00:00
shell: bash
- name: Set ENV
run: |
echo "NAME=clash.meta" >> $GITHUB_ENV
echo "REPO=${{ github.repository }}" >> $GITHUB_ENV
echo "ShortSHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
2023-01-15 13:51:33 +00:00
echo "BUILDTIME=$(date -u)" >> $GITHUB_ENV
shell: bash
- name: Set ENV
run: |
echo "TAGS=with_gvisor,with_lwip" >> $GITHUB_ENV
echo "LDFLAGS=-X 'github.com/Dreamacro/clash/constant.Version=${VERSION}' -X 'github.com/Dreamacro/clash/constant.BuildTime=${BUILDTIME}' -w -s -buildid=" >> $GITHUB_ENV
shell: bash
2022-11-02 14:13:54 +00:00
- name: Setup Go
uses: actions/setup-go@v3
2022-05-01 16:59:41 +00:00
with:
2022-11-02 14:13:54 +00:00
go-version: '1.19'
check-latest: true
2023-01-15 07:04:27 +00:00
2023-01-16 08:44:31 +00:00
- name: Test
if: ${{ github.ref_name=='Beta' && matrix.job.id=='1' && matrix.job.type=='WithoutCGO' }}
run: |
go test ./...
- name: Build WithoutCGO
if: ${{ matrix.job.type=='WithoutCGO' }}
env:
NAME: Clash.Meta
BINDIR: bin
run: make -j$(($(nproc) + 1)) ${{ matrix.job.target }}
- uses: nttld/setup-ndk@v1
2023-01-16 08:44:31 +00:00
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
id: setup-ndk
with:
ndk-version: r25b
add-to-path: false
local-cache: true
2023-01-15 13:51:33 +00:00
- name: Build Android
2023-01-16 08:44:31 +00:00
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
2022-05-01 16:59:41 +00:00
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
mkdir bin
2023-01-15 13:51:33 +00:00
CC=${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang
CGO_ENABLED=1 CC=${CC} GOARCH=arm64 GOOS=android go build -tags ${TAGS} -trimpath -ldflags "${LDFLAGS}" -o bin/${NAME}-android-arm64
- name: Set up xgo
2023-01-16 08:44:31 +00:00
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
2023-01-15 13:51:33 +00:00
run: |
docker pull techknowlogick/xgo:latest
go install src.techknowlogick.com/xgo@latest
- name: Build by xgo
2023-01-16 08:44:31 +00:00
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
2023-01-15 13:51:33 +00:00
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
mkdir bin
xgo --branch ${{ github.ref_name }} --targets="${{ matrix.job.target }}" --tags="${TAGS}" -ldflags="${LDFLAGS}" --out bin/${NAME} github.com/${{ github.repository }}
2023-01-16 07:09:25 +00:00
2023-01-16 08:44:31 +00:00
- name: Rename
if: ${{ matrix.job.type=='WithCGO' }}
2023-01-16 07:09:25 +00:00
run: |
2023-01-15 13:51:33 +00:00
cd bin
ls -la
cp ../.github/rename-cgo.sh ./
2023-01-15 07:04:27 +00:00
bash ./rename-cgo.sh
rm ./rename-cgo.sh
2023-01-16 08:44:31 +00:00
ls -la
cd ..
- name: Zip
if: ${{ success() }}
run: |
cd bin
ls -la
chmod +x *
2023-01-16 07:09:25 +00:00
cp ../.github/release.sh ./
bash ./release.sh
rm ./release.sh
ls -la
cd ..
2022-05-01 16:59:41 +00:00
2023-01-15 07:04:27 +00:00
- uses: actions/upload-artifact@v3
if: ${{ success() }}
2022-05-01 16:59:41 +00:00
with:
2023-01-15 07:04:27 +00:00
name: artifact
path: bin/
2023-01-15 13:51:33 +00:00
2023-01-16 08:44:31 +00:00
Upload:
2023-01-15 13:51:33 +00:00
permissions: write-all
2023-01-16 08:44:31 +00:00
needs: [ Build ]
2023-01-15 07:04:27 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: bin/
- name: Display structure of downloaded files
run: ls -R
working-directory: bin
2022-05-01 16:59:41 +00:00
2023-01-15 13:51:33 +00:00
- name: Delete current release assets
uses: andreaswilli/delete-release-assets-action@v2.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: Prerelease-${{ github.ref_name }}
deleteOnlyFromDrafts: false
2022-05-01 16:59:41 +00:00
- name: Tag Repo
2023-01-15 13:51:33 +00:00
uses: richardsimko/update-tag@v1.0.6
2022-05-01 16:59:41 +00:00
with:
2022-05-02 00:27:17 +00:00
tag_name: Prerelease-${{ github.ref_name }}
2022-05-01 16:59:41 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Alpha
uses: softprops/action-gh-release@v1
if: ${{ success() }}
with:
2023-01-10 16:50:04 +00:00
tag: ${{ github.ref_name }}
2022-05-02 00:27:17 +00:00
tag_name: Prerelease-${{ github.ref_name }}
2022-05-01 16:59:41 +00:00
files: bin/*
prerelease: true
2023-01-20 09:13:32 +00:00
generate_release_notes: true