2023-02-19 01:23:06 +08:00
|
|
|
name: Build
|
2022-05-02 00:59:41 +08:00
|
|
|
on:
|
2022-11-26 20:11:43 +08:00
|
|
|
workflow_dispatch:
|
2022-05-02 00:59:41 +08:00
|
|
|
push:
|
2023-01-21 14:42:48 +08:00
|
|
|
paths-ignore:
|
2023-01-25 20:53:39 +08:00
|
|
|
- "docs/**"
|
|
|
|
- "README.md"
|
2023-04-03 20:03:18 +08:00
|
|
|
- ".github/ISSUE_TEMPLATE/**"
|
2022-05-02 00:59:41 +08:00
|
|
|
branches:
|
2022-05-02 01:14:30 +08:00
|
|
|
- Alpha
|
2023-02-19 01:23:06 +08:00
|
|
|
tags:
|
|
|
|
- "v*"
|
2023-01-15 21:51:33 +08:00
|
|
|
pull_request_target:
|
2022-05-02 00:59:41 +08:00
|
|
|
branches:
|
2022-05-02 01:14:30 +08:00
|
|
|
- Alpha
|
2023-03-06 00:49:34 +08:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.ref }}-${{ github.workflow }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-25 20:53:39 +08:00
|
|
|
env:
|
|
|
|
REGISTRY: docker.io
|
2022-05-02 00:59:41 +08:00
|
|
|
jobs:
|
2023-01-16 16:44:31 +08:00
|
|
|
Build:
|
2023-01-15 21:51:33 +08:00
|
|
|
permissions: write-all
|
2023-01-15 15:04:27 +08:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-15 21:51:33 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
job:
|
2023-01-25 20:53:39 +08:00
|
|
|
- {
|
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "linux-amd64 linux-amd64-compatible",
|
|
|
|
id: "1",
|
|
|
|
}
|
|
|
|
- {
|
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "linux-armv5 linux-armv6 linux-armv7",
|
|
|
|
id: "2",
|
|
|
|
}
|
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "linux-arm64 linux-mips64 linux-mips64le",
|
|
|
|
id: "3",
|
|
|
|
}
|
2023-01-25 20:53:39 +08:00
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "linux-mips-softfloat linux-mips-hardfloat linux-mipsle-softfloat linux-mipsle-hardfloat",
|
|
|
|
id: "4",
|
|
|
|
}
|
|
|
|
- { type: "WithoutCGO", target: "linux-386 linux-riscv64", id: "5" }
|
2023-01-25 20:53:39 +08:00
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "freebsd-386 freebsd-amd64 freebsd-arm64",
|
|
|
|
id: "6",
|
|
|
|
}
|
2023-01-25 20:53:39 +08:00
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "windows-amd64-compatible windows-amd64 windows-386",
|
|
|
|
id: "7",
|
|
|
|
}
|
2023-01-25 20:53:39 +08:00
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "windows-arm64 windows-arm32v7",
|
|
|
|
id: "8",
|
|
|
|
}
|
2023-03-01 13:41:25 +08:00
|
|
|
- {
|
2023-03-01 16:55:26 +08:00
|
|
|
type: "WithoutCGO",
|
|
|
|
target: "darwin-amd64 darwin-arm64 android-arm64",
|
|
|
|
id: "9",
|
|
|
|
}
|
2023-01-16 16:44:31 +08:00
|
|
|
- { type: "WithCGO", target: "windows/*", id: "1" }
|
2023-01-30 17:00:02 +08:00
|
|
|
- { type: "WithCGO", target: "linux/386", id: "2" }
|
|
|
|
- { type: "WithCGO", target: "linux/amd64", id: "3" }
|
|
|
|
- { type: "WithCGO", target: "linux/arm64,linux/riscv64", id: "4" }
|
|
|
|
- { type: "WithCGO", target: "linux/arm,", id: "5" }
|
|
|
|
- { type: "WithCGO", target: "linux/arm-6,linux/arm-7", id: "6" }
|
|
|
|
- { type: "WithCGO", target: "linux/mips,linux/mipsle", id: "7" }
|
|
|
|
- { type: "WithCGO", target: "linux/mips64", id: "8" }
|
|
|
|
- { type: "WithCGO", target: "linux/mips64le", id: "9" }
|
|
|
|
- { type: "WithCGO", target: "darwin-10.16/*", id: "10" }
|
|
|
|
- { type: "WithCGO", target: "android", id: "11" }
|
2023-01-15 15:04:27 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-01-15 21:51:33 +08:00
|
|
|
- name: Set variables
|
|
|
|
run: echo "VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
2023-01-15 01:46:30 +08:00
|
|
|
- name: Set variables
|
2023-01-15 15:04:27 +08:00
|
|
|
if: ${{github.ref_name=='Alpha'}}
|
2023-01-15 21:51:33 +08:00
|
|
|
run: echo "VERSION=alpha-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
2023-01-15 01:46:30 +08:00
|
|
|
shell: bash
|
|
|
|
|
2023-01-15 15:04:27 +08:00
|
|
|
- name: Set variables
|
|
|
|
if: ${{github.ref_name=='Beta'}}
|
2023-01-15 21:51:33 +08:00
|
|
|
run: echo "VERSION=beta-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Set variables
|
2023-02-19 01:23:06 +08:00
|
|
|
if: ${{github.ref_name=='Meta'}}
|
|
|
|
run: echo "VERSION=meta-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Set variables
|
|
|
|
if: ${{github.ref_name=='' || github.ref_type=='tag'}}
|
2023-01-15 21:51:33 +08:00
|
|
|
run: echo "VERSION=$(git describe --tags)" >> $GITHUB_ENV
|
2023-01-15 15:04:27 +08:00
|
|
|
shell: bash
|
|
|
|
|
2023-01-15 01:46:30 +08:00
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
2023-03-01 16:55:26 +08:00
|
|
|
sudo timedatectl set-timezone "Asia/Shanghai"
|
2023-01-15 01:46:30 +08:00
|
|
|
echo "NAME=clash.meta" >> $GITHUB_ENV
|
|
|
|
echo "REPO=${{ github.repository }}" >> $GITHUB_ENV
|
|
|
|
echo "ShortSHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
|
2023-03-01 16:55:26 +08:00
|
|
|
echo "BUILDTIME=$(date)" >> $GITHUB_ENV
|
2023-02-19 01:23:06 +08:00
|
|
|
echo "BRANCH=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
|
2023-01-15 21:51:33 +08:00
|
|
|
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
|
2023-01-15 01:46:30 +08:00
|
|
|
shell: bash
|
|
|
|
|
2022-11-02 22:13:54 +08:00
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v3
|
2022-05-02 00:59:41 +08:00
|
|
|
with:
|
2023-02-02 15:39:57 +08:00
|
|
|
go-version: "1.20"
|
2022-11-02 22:13:54 +08:00
|
|
|
check-latest: true
|
2023-01-15 15:04:27 +08:00
|
|
|
|
2023-01-16 16:44:31 +08:00
|
|
|
- name: Test
|
2023-02-19 01:23:06 +08:00
|
|
|
if: ${{ matrix.job.id=='1' && matrix.job.type=='WithoutCGO' }}
|
2023-01-16 16:44:31 +08:00
|
|
|
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 }}
|
|
|
|
|
2023-01-15 01:46:30 +08:00
|
|
|
- uses: nttld/setup-ndk@v1
|
2023-01-16 16:44:31 +08:00
|
|
|
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
|
2023-01-15 01:46:30 +08:00
|
|
|
id: setup-ndk
|
|
|
|
with:
|
|
|
|
ndk-version: r25b
|
|
|
|
add-to-path: false
|
2023-01-16 14:53:19 +08:00
|
|
|
local-cache: true
|
2023-01-15 01:46:30 +08:00
|
|
|
|
2023-01-15 21:51:33 +08:00
|
|
|
- name: Build Android
|
2023-01-16 16:44:31 +08:00
|
|
|
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
|
2022-05-02 00:59:41 +08:00
|
|
|
env:
|
2023-01-15 01:46:30 +08:00
|
|
|
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
|
|
|
|
run: |
|
|
|
|
mkdir bin
|
2023-01-15 21:51:33 +08: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 16:44:31 +08:00
|
|
|
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
|
2023-01-15 21:51:33 +08:00
|
|
|
run: |
|
|
|
|
docker pull techknowlogick/xgo:latest
|
|
|
|
go install src.techknowlogick.com/xgo@latest
|
|
|
|
|
|
|
|
- name: Build by xgo
|
2023-01-16 16:44:31 +08:00
|
|
|
if: ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
|
2023-01-15 21:51:33 +08:00
|
|
|
env:
|
|
|
|
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
|
|
|
|
run: |
|
|
|
|
mkdir bin
|
2023-02-19 01:23:06 +08:00
|
|
|
xgo --targets="${{ matrix.job.target }}" --tags="${TAGS}" -ldflags="${LDFLAGS}" --out bin/${NAME} ./
|
2023-01-16 15:09:25 +08:00
|
|
|
|
2023-01-16 16:44:31 +08:00
|
|
|
- name: Rename
|
|
|
|
if: ${{ matrix.job.type=='WithCGO' }}
|
2023-01-16 15:09:25 +08:00
|
|
|
run: |
|
2023-01-15 21:51:33 +08:00
|
|
|
cd bin
|
|
|
|
ls -la
|
|
|
|
cp ../.github/rename-cgo.sh ./
|
2023-01-15 15:04:27 +08:00
|
|
|
bash ./rename-cgo.sh
|
|
|
|
rm ./rename-cgo.sh
|
2023-01-16 16:44:31 +08:00
|
|
|
ls -la
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
- name: Zip
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
|
|
|
cd bin
|
|
|
|
ls -la
|
|
|
|
chmod +x *
|
2023-01-16 15:09:25 +08:00
|
|
|
cp ../.github/release.sh ./
|
|
|
|
bash ./release.sh
|
|
|
|
rm ./release.sh
|
2023-01-15 01:46:30 +08:00
|
|
|
ls -la
|
|
|
|
cd ..
|
2022-05-02 00:59:41 +08:00
|
|
|
|
2023-03-01 13:41:25 +08:00
|
|
|
- name: Save version
|
|
|
|
run: echo ${VERSION} > bin/version.txt
|
|
|
|
shell: bash
|
|
|
|
|
2023-01-15 15:04:27 +08:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: ${{ success() }}
|
2022-05-02 00:59:41 +08:00
|
|
|
with:
|
2023-01-15 15:04:27 +08:00
|
|
|
name: artifact
|
|
|
|
path: bin/
|
|
|
|
|
2023-02-19 01:23:06 +08:00
|
|
|
Upload-Prerelease:
|
2023-01-15 21:51:33 +08:00
|
|
|
permissions: write-all
|
2023-02-19 01:23:06 +08:00
|
|
|
if: ${{ github.ref_type=='branch' }}
|
2023-03-01 16:55:26 +08:00
|
|
|
needs: [Build]
|
2023-01-15 15:04:27 +08: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-02 00:59:41 +08:00
|
|
|
|
2023-01-15 21:51:33 +08: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
|
|
|
|
|
2023-02-27 23:02:45 +08:00
|
|
|
- name: Set Env
|
2023-03-01 16:55:26 +08:00
|
|
|
run: |
|
2023-03-02 15:09:40 +08:00
|
|
|
echo "BUILDTIME=$(TZ=Asia/Shanghai date)" >> $GITHUB_ENV
|
2023-02-27 23:02:45 +08:00
|
|
|
shell: bash
|
|
|
|
|
2022-05-02 00:59:41 +08:00
|
|
|
- name: Tag Repo
|
2023-01-15 21:51:33 +08:00
|
|
|
uses: richardsimko/update-tag@v1.0.6
|
2022-05-02 00:59:41 +08:00
|
|
|
with:
|
2022-05-02 08:27:17 +08:00
|
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
2022-05-02 00:59:41 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-03-01 16:55:26 +08:00
|
|
|
- run: |
|
2023-03-02 14:39:57 +08:00
|
|
|
cat > release.txt << 'EOF'
|
|
|
|
Release created at ${{ env.BUILDTIME }}
|
2023-03-01 16:55:26 +08:00
|
|
|
Synchronize ${{ github.ref_name }} branch code updates, keeping only the latest version
|
|
|
|
<br>
|
2023-05-02 21:35:40 +08:00
|
|
|
[我应该下载哪个文件? / Which file should I download?](https://github.com/MetaCubeX/Clash.Meta/wiki/FAQ)
|
|
|
|
[查看文档 / Docs](https://metacubex.github.io/Meta-Docs/)
|
2023-03-02 14:39:57 +08:00
|
|
|
EOF
|
2023-03-01 16:55:26 +08:00
|
|
|
|
2023-02-19 01:23:06 +08:00
|
|
|
- name: Upload Prerelease
|
2022-05-02 00:59:41 +08:00
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: ${{ success() }}
|
|
|
|
with:
|
2023-01-11 00:50:04 +08:00
|
|
|
tag: ${{ github.ref_name }}
|
2022-05-02 08:27:17 +08:00
|
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
2023-03-01 16:55:26 +08:00
|
|
|
files: |
|
|
|
|
bin/*
|
2022-05-02 00:59:41 +08:00
|
|
|
prerelease: true
|
2023-01-20 17:13:32 +08:00
|
|
|
generate_release_notes: true
|
2023-03-01 16:55:26 +08:00
|
|
|
body_path: release.txt
|
2023-02-19 01:23:06 +08:00
|
|
|
|
|
|
|
Upload-Release:
|
|
|
|
permissions: write-all
|
|
|
|
if: ${{ github.ref_type=='tag' }}
|
2023-03-01 16:55:26 +08:00
|
|
|
needs: [Build]
|
2023-02-19 01:23:06 +08: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
|
|
|
|
|
|
|
|
- name: Upload Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: ${{ success() }}
|
|
|
|
with:
|
|
|
|
tag: ${{ github.ref_name }}
|
|
|
|
tag_name: ${{ github.ref_name }}
|
|
|
|
files: bin/*
|
|
|
|
generate_release_notes: true
|
|
|
|
|
2023-01-25 20:53:39 +08:00
|
|
|
Docker:
|
|
|
|
permissions: write-all
|
2023-03-01 16:55:26 +08:00
|
|
|
needs: [Build]
|
2023-01-25 20:53:39 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: artifact
|
|
|
|
path: bin/
|
|
|
|
|
|
|
|
- name: Display structure of downloaded files
|
|
|
|
run: ls -R
|
|
|
|
working-directory: bin
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Setup Docker buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
|
|
|
|
# Extract metadata (tags, labels) for Docker
|
|
|
|
# https://github.com/docker/metadata-action
|
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ secrets.DOCKERHUB_ACCOUNT }}/${{secrets.DOCKERHUB_REPO}}
|
|
|
|
- name: Show files
|
|
|
|
run: |
|
|
|
|
ls .
|
|
|
|
ls bin/
|
|
|
|
- name: Log into registry
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ secrets.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
|
|
|
|
# Build and push Docker image with Buildx (don't push on PR)
|
|
|
|
# https://github.com/docker/build-push-action
|
|
|
|
- name: Build and push Docker image
|
|
|
|
id: build-and-push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
platforms: |
|
|
|
|
linux/386
|
|
|
|
linux/amd64
|
|
|
|
linux/arm64/v8
|
2023-03-01 13:41:25 +08:00
|
|
|
linux/arm/v7
|
|
|
|
# linux/riscv64
|
2023-01-25 20:53:39 +08:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2023-01-30 17:00:02 +08:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|