mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
234 lines
7.2 KiB
YAML
234 lines
7.2 KiB
YAML
name: Prerelease
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- Alpha
|
|
- Beta
|
|
pull_request_target:
|
|
branches:
|
|
- Alpha
|
|
- Beta
|
|
jobs:
|
|
Build-Prerelease-WithoutCGO:
|
|
permissions: write-all
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
job:
|
|
- { target: "linux-amd64 linux-amd64-compatible", id: "1" }
|
|
- { target: "linux-armv5 linux-armv6 linux-armv7", id: "2" }
|
|
- { target: "linux-arm64 linux-mips64 linux-mips64le", id: "3" }
|
|
- { target: "linux-mips-softfloat linux-mips-hardfloat linux-mipsle-softfloat linux-mipsle-hardfloat", id: "4" }
|
|
- { target: "freebsd-386 freebsd-amd64 freebsd-arm64", id: "5" }
|
|
- { target: "windows-amd64-compatible windows-amd64 windows-386", id: "6" }
|
|
- { target: "windows-arm64 windows-arm32v7", id: "7" }
|
|
- { target: "darwin-amd64 darwin-arm64 android-arm64", id: "8" }
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set variables
|
|
run: echo "VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Set variables
|
|
if: ${{github.ref_name=='Alpha'}}
|
|
run: echo "VERSION=alpha-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Set variables
|
|
if: ${{github.ref_name=='Beta'}}
|
|
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
|
|
shell: bash
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.19'
|
|
check-latest: true
|
|
|
|
- name: Test
|
|
if: ${{ github.ref_name=='Beta' && matrix.job.id=='1' }}
|
|
run: |
|
|
go test ./...
|
|
|
|
- name: Build
|
|
if: success()
|
|
env:
|
|
NAME: Clash.Meta
|
|
BINDIR: bin
|
|
run: |
|
|
make -j$(($(nproc) + 1)) ${{ matrix.job.target }}
|
|
cd bin
|
|
ls -la
|
|
chmod +x *
|
|
cp ../.github/release.sh ./
|
|
bash ./release.sh
|
|
rm ./release.sh
|
|
ls -la
|
|
cd ..
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
if: ${{ success() }}
|
|
with:
|
|
name: artifact
|
|
path: bin/
|
|
|
|
Build-Prerelease-WithCGO:
|
|
permissions: write-all
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
job:
|
|
- { target: "windows/*", id: "1" }
|
|
- { target: "linux/386,linux/amd64", id: "2" }
|
|
- { target: "linux/arm64,linux/riscv64", id: "3" }
|
|
- { target: "linux/arm,linux/arm-6,linux/arm-7", id: "4" }
|
|
- { target: "linux/mips,linux/mipsle", id: "5" }
|
|
- { target: "linux/mips64,linux/mips64le", id: "6" }
|
|
- { target: "darwin-10.16/*", id: "7" }
|
|
- { target: "android", id: "8" }
|
|
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set variables
|
|
run: echo "VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Set variables
|
|
if: ${{github.ref_name=='Alpha'}}
|
|
run: echo "VERSION=alpha-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Set variables
|
|
if: ${{github.ref_name=='Beta'}}
|
|
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
|
|
shell: bash
|
|
|
|
- name: Set ENV
|
|
run: |
|
|
echo "NAME=clash.meta" >> $GITHUB_ENV
|
|
echo "BUILD_TIME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
|
|
echo "REPO=${{ github.repository }}" >> $GITHUB_ENV
|
|
echo "ShortSHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
|
|
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
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.19'
|
|
check-latest: true
|
|
|
|
- uses: nttld/setup-ndk@v1
|
|
if: ${{matrix.job.target=='android'}}
|
|
id: setup-ndk
|
|
with:
|
|
ndk-version: r25b
|
|
add-to-path: false
|
|
|
|
- name: Build Android
|
|
if: ${{matrix.job.target=='android'}}
|
|
env:
|
|
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
|
|
run: |
|
|
mkdir bin
|
|
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
|
|
if: ${{matrix.job.target!='android'}}
|
|
run: |
|
|
docker pull techknowlogick/xgo:latest
|
|
go install src.techknowlogick.com/xgo@latest
|
|
|
|
- name: Build by xgo
|
|
if: ${{matrix.job.target!='android'}}
|
|
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 }}
|
|
|
|
- name: Rename and zip
|
|
if: ${{ success() }}
|
|
env:
|
|
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
|
|
run: |
|
|
cd bin
|
|
ls -la
|
|
chmod +x *
|
|
cp ../.github/rename-cgo.sh ./
|
|
bash ./rename-cgo.sh
|
|
rm ./rename-cgo.sh
|
|
cp ../.github/release.sh ./
|
|
bash ./release.sh
|
|
rm ./release.sh
|
|
ls -la
|
|
cd ..
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
if: ${{ success() }}
|
|
with:
|
|
name: artifact
|
|
path: bin/
|
|
|
|
|
|
Upload-Prerelease:
|
|
permissions: write-all
|
|
needs: [ Build-Prerelease-WithoutCGO, Build-Prerelease-WithCGO ]
|
|
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
|
|
|
|
- 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
|
|
|
|
- name: Tag Repo
|
|
uses: richardsimko/update-tag@v1.0.6
|
|
with:
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Upload Alpha
|
|
uses: softprops/action-gh-release@v1
|
|
if: ${{ success() }}
|
|
with:
|
|
tag: ${{ github.ref_name }}
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
|
files: bin/*
|
|
prerelease: true
|
|
generate_release_notes: true |